Do I need an appId for a XFBML version of the Facebook Like button?

Answering my own question, after pulling out all my hair… http://developers.facebook.com/docs/guides/web/ “The JavaScript SDK requires that you register your website with Facebook to get an App ID (or appId). The appId is a unique identifier for your site that ensures that we have the right level of security in place between the user and your … Read more

How to subscribe to real-time updates for a Facebook page’s wall

I do not know if this can help you but I’ll tell you where I am for real-time update page feed: (permissions : manage_page,offline_access,read_stream) your application must be linked to the page (then install the application but not required to have a tab ex. create tab https://graph.facebook.com/PAGE_ID/tabs?app_id=APP_ID&method=POST&access_token=PAGE_ACCESS_TOKEN and delete tab TAB_ID=PAGE_ID.’/tabs/app_’.APP_ID; https://graph.facebook.com/TAB_ID?method=DELETE&access_token=PAGE_ACCESS_TOKEN) function page_access_token($page_id,$access_token){ $page_token_url=”https://graph.facebook.com/” … Read more

Error Invalid Scopes: offline_access, publish_stream, when I try to connect with Facebook API

The permissions offline_access and publish_stream are deprecated, thus cannot be requested anymore. publish_stream can be replaced by publish_actions, offline_access is gone. See https://developers.facebook.com/docs/facebook-login/permissions/v2.4#reference https://developers.facebook.com/docs/apps/changelog