user896993
user896993

Reputation: 1351

How can I get realtime updates from facebook graph api for friend checkins?

Is it possible to get real-time updates from Facebook's graph API for a user's friend's check-ins?

I know you can get friend check-ins on demand and can get user check-ins real-time, how about friend check-ins real-time?

Thanks.

Upvotes: 1

Views: 1284

Answers (2)

Donn Lee
Donn Lee

Reputation: 3149

You cannot get RTUs for a user's friends' checkins. Just the user's checkins, and even so you must enable 'feed' in the subscription, not 'checkins'. Currently a documentation bug.

Upvotes: 0

ramya
ramya

Reputation: 21

You can get the real time updates from the facebook graph api by using the subscriptions

https://graph.facebook.com/<APP_ID>/subscriptions?object=check_in&callback_url=<ur url>

. Refer the below link for details

http://vikasrao.wordpress.com/2011/07/05/subscribing-to-facebook-graph-apis-real-time-updates-using-curl/

Upvotes: 1

Related Questions