Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I do not know if this can help you but I'll tell you where I am for real-time update page feed:</p> <p>(permissions : manage_page,offline_access,read_stream)</p> <ol> <li><p>your application must be linked to the page (then install the application but not required to have a tab ex. create tab <a href="https://graph.facebook.com/PAGE_ID/tabs?app_id=APP_ID&amp;method=POST&amp;access_token=PAGE_ACCESS_TOKEN" rel="nofollow">https://graph.facebook.com/PAGE_ID/tabs?app_id=APP_ID&amp;method=POST&amp;access_token=PAGE_ACCESS_TOKEN</a> and delete tab TAB_ID=PAGE_ID.'/tabs/app_'.APP_ID; <a href="https://graph.facebook.com/TAB_ID?method=DELETE&amp;access_token=PAGE_ACCESS_TOKEN" rel="nofollow">https://graph.facebook.com/TAB_ID?method=DELETE&amp;access_token=PAGE_ACCESS_TOKEN</a>)</p> <p><pre><code> function page_access_token($page_id,$access_token){<br> $page_token_url="https://graph.facebook.com/" . $page_id . "?fields=access_token&amp;" . $access_token; $response = file_get_contents($page_token_url); $resp_obj = json_decode($response,true); $page_access_token = $resp_obj['access_token']; return $page_access_token; }</p> <p>function page_tabs_create($page_id,$app_id,$page_access_token){</p> <p>$page_settings_url = "<a href="https://graph.facebook.com/" rel="nofollow">https://graph.facebook.com/</a>" . $page_id . "/tabs?app_id=".$app_id."&amp;method=POST&amp;access_token=" . $page_access_token; $response = file_get_contents($page_settings_url); $resp_obj = json_decode($response,true); return $resp_obj; }</p> <p>function page_tabs_delete($tab_id,$page_access_token){</p> <p>$page_settings_url = "<a href="https://graph.facebook.com/" rel="nofollow">https://graph.facebook.com/</a>".$tab_id."?method=DELETE&amp;access_token=" . $page_access_token; $response = file_get_contents($page_settings_url); $resp_obj = json_decode($response,true);</p> <p>return $resp_obj; } </pre></code></p></li> <li><p>Subscription: to subscribe must be like a "user" and therefore object = user fields = feed but you have to add new fields because otherwise it receives the comments and likes the wall so you must add "status" in order to receive the articles posted (my problem is to get other content such as links I have managed to add "link" as fields but I am not receiving notifications when a link is posted)</p> <p>$param = array ('access_token' => $ access_token, 'object' => 'user', 'fields' => 'feed, status, link' 'callback_url' => 'http:// ******** fbcallback.php' 'verify_token' =>'***********', 'include_values' => 'true');</p> <p>POST <a href="https://graph.facebook.com/APP_ID/subscriptions" rel="nofollow">https://graph.facebook.com/APP_ID/subscriptions</a></p></li> </ol> <p>my English is not very good but I hope it will help you, on my side I'm still looking for really all updates to the wall (links, video ...)</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload