1

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.

user896993
  • 1,341
  • 13
  • 15

2 Answers2

1

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/

ramya
  • 21
  • 1
  • 1
    You can improve your answer by adding the curl scripts from the blogpost directly in your answer... – rene Oct 21 '12 at 15:42
0

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.

Donn Lee
  • 2,962
  • 1
  • 24
  • 16