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?
- how to subscribe to the real time updates of a Facebook page?
- Do you really need to add a tab to that page? When can you delete it?
- 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.