What is the counterpart of Twitter Streaming API for Facebook Fan Page?
How can i get real time updates from a Facebook Fan Page?
|
What is the counterpart of Twitter Streaming API for Facebook Fan Page? How can i get real time updates from a Facebook Fan Page? |
||||
|
|
|
You have to use the realtime api from facebook : http://developers.facebook.com/docs/api/realtime/ To do what you ask, you must subscribe to To add a subscription you have to send a POST request to :
And for that you need an access token that you can get at :
The fields that have to be in the POST data are :
And you can specify
Once your callback url has been verified, you will receive updates when data change in the feed of the page on your callback url as json objects, here is an example for a user :
You can also do GET and DELETE on the same URL to get the list of your subscriptions, and to delete subscriptions. But all the details are in the facebook doc |
|||||||||
|