Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
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.

I have subscribed for facebook real time update using following codes

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $app_token_url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$fields = 'feed, friends, activities,checkins, location';
$res = curl_exec($ch);
parse_str($res, $token);

if (isset($token['access_token'])) {
  // Let's register a callback
  $params = array(
    'object'       =>  'user',
    'fields'       =>  $fields,
    'callback_url' =>  $app_url .'?action=callback',
    'verify_token' =>  $verify_token,
  ); 

  curl_setopt($ch, CURLOPT_URL, 'https://graph.facebook.com/'
                              .$app_id.'/subscriptions?access_token='
                              .$token['access_token']);
  curl_setopt($ch, CURLOPT_POST, 1);
  curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
  $res = curl_exec($ch);
  if ($res && $res != 'null') {
           print_r($res);
  }

  // Fetch list of all callbacks
  curl_setopt($ch, CURLOPT_POST, 0);
  $res = curl_exec($ch);
}
if ($res && $res != 'null') {
  print_r($res);
}
curl_close($ch);

But the problem is I am not getting updates when a user who is in my friend list checks-in. But in subscription we have already included friends checkins..

please help me out. Thanks in advance

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.