Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
Scala is a general purpose programming language principally targeting the Java Virtual Machine. Designed to express common programming patterns in a concise, elegant, and type-safe way, it fuses both imperative and functional programming styles. Its key features are: statically typed; advanced ...
0
votes
1answer
70 views
How can I fetch a binary data stream via scala?
I want to download an image for a given url in a scala program. I am trying to do something like the following but all the dispatcher examples I can find talk about text, not data streams. Can anyone ...
1
vote
0answers
45 views
facebook realtime update upon user checkin
My app needs to know whenever users check into a specific merchant's location.
FB Realtime update sends a POST request notifying user's location is changed, then my application will have to make a ...
2
votes
1answer
144 views
restfb api not support when user logout from facebook & access key generate every time
I am using RESTFb api to post a message on facebook wall
my code is:
val facebookClient: FacebookClient = new DefaultFacebookClient("access_key")
def publishMessage(msg:Mesage): String = {
val ...
6
votes
2answers
2k views
Angularjs + OAuth + Play 2.0
I'm learning Angularjs to create a single page application for a new project.
The back-end will be in Scala with Play 2.0 framework in a REST style API.
I would like to use FB, Twitter, Google, OpenId ...
0
votes
1answer
788 views
What Facebook libraries are there for Scala?
looking for something other than a generic Java library.
2
votes
3answers
682 views
Integrate Lift ProtoUser with Facebook Login / SSO
I'm writing a web-based app (hoping to using Lift) and would like to have users log into my system using their Facebook credentials. I also plan to have a user table so that I can track the users who ...
3
votes
2answers
950 views
Sending outbound HTTP request from Akka / Scala
I know how to handle incoming http requests in Akka, but I want my Akka-based web app also to communicate with Facebook and CouchDB through HTTP APIs by sending outbound calls. Is there any good ...