facebook-java-api

Is it possible to have a 'background' Facebook App?

I need a Facebook application that kind of sit in the 'background' of user operations. Once the app is installed by the user, it will keep on sending the user's status updates, new friend connections etc to another web app of mine. It will keep on getting info no matter whether the app page is open or not. My question is -- is this poss...

Redirecting Facebook 'offline_access' permission page

I am trying to get users' permission for 'offline_access' in an iFrame Facebook application coded with the Facebook Java API. I understand that I need to obtain an 'indefinite session key' after the users approves my application. Currently, I can accomplish what I want, but in a very awkward way that is probably not correct. There must b...

facebook-java-api on red5, can they work together?

Hi. I have a Adobe Flash Builder GUI application that connects to Red5 to communicate. can i use the red5 to call facebook API calls? can anyone provide an example? all the examples that i can find are with tomcat. thanks! ...

facebook-java-api: fql_query returns null

Hiya. I'm trying to fetch logged-in first name using fql_query. i tried the following code: import java.io.IOException; import java.io.PrintWriter; import java.util.ArrayList; import javax.servlet.http.*; import javax.servlet.*; import org.w3c.dom.Document; import com.google.code.facebookapi.FacebookException; import com.google.code.f...

facebook java api: what is the replacement for all the feed_* methods?

I see all the feed_* methods are deprecated... (I am using version 3.0.2). What replaces them? How do I publish something to the user's feed. ...

What happens if I miss facebook's callbacks?

What happens if I miss facebook's callback, because my app is down, or had an error or something? Will facebook retry later? ...

Are there any good Java API for facebook?

I've played around a bit with twitter4j and found it absolutely wonderful. Now I've been looking into the equivalent for facebook but so far haven't had much luck finding a decent project. I looked into facebook-java-api but it appears that they break their API from release to release. I consider this unacceptable. I'm currently playin...

FacebookXmlRestClient NotSerializableException on Google AppEngine

I've tried to follow the facebook-java-api filter example but i got this expection when i attempted to save to the client object to the session. The code is being hosted on the google appengine platform. java.lang.RuntimeException: java.io.NotSerializableException: com.google.code.facebookapi.FacebookXmlRestClient at com.google.apph...

How to get facebook session key with facebook-java-api

How do I get the session key with the facebook-java-api ?# What I did so far is this : After I authorised my app to acces my facebook account I do get redirected to the right redirect url in my app and there I do FacebookJsonRestClient facebookClient = new FacebookJsonRestClient ('key', 'secaret') String token = facebookCli...

How to use Facebook Java API to add an attachment to a wall post?

Hey, I have some trouble using the stream_publish method, more exactly with the attachment I want to include. I am building a desktop application and I want to be able to post on a user's wall. The post will include a message and a photo I will upload from my local HDD. The problem is I don't know how to specify the source attribute of ...