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 know there are a few questions on this and there is also a heavily upvoted answer,

But I find it incomplete or not as well explained as it could be. Also, on official Facebook documentation, there is no mention of the ability to subscribe to a page's updates. However, some seem to be able to do it.

If you have successfully subscribed to a Facebook page's real time updates, can you please share the full process?

  1. how to subscribe to the real time updates of a Facebook page?
  2. Do you really need to add a tab to that page? When can you delete it?
  3. What is the URL to subscribe to and what are the parameters?

I tried making a POST

$facebook->api("/" . $APP_ID . '/subscriptions', 'POST',
    array(
         'object' => 'page' ,
         'fields' => 'feed' ,
         'callback_url' => $CALLBACK_URL_PAGES, 
         'verify_token' => $verify_token_pages,                                    
         'access_token' => $app_token
   ));

but got: (#100) "feed" is an invalid field name

Before that I managed to get access tokens for all pages a user has:

   $facebook->api("/" . $user_id . '/accounts', 'GET',
         array(
              'access_token' => $extended_user_access_token
         )
   );

But this is where I'm stuck. Thank you 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.