Getting FB APP_ID from FB Page

Hello, I would like to know if it is possible to get APB_FB_FB if ​​I created a Facebook page (there is no regular user), or is this identifier intended only for applications? Thanks

+7
source share
4 answers

If you are a facebook user, enter your ID and go to the " https://developers.facebook.com " page to register as a facebook developer.

After confirming the creation of facebook Go to the "APPS" tab, create new applications, enter your wish site , for example http://chalachchabi.com/

Facebook will provide your APP_ID FB for future reference.

+6
source

If you have a question, can you use your FB page id as the fb:app_id meta tag, then no! The documentation on Facebook is restrained and controversial.

+5
source

You do not have an application identifier, but a page identifier.

i.e. http://graph.facebook.com/nike gives you:

  { "id": "15087023444", "name": "Nike", "picture": "http://profile.ak.fbcdn.net/hprofile-ak-snc4/373573_15087023444_171119216_s.jpg", "link": "http://www.facebook.com/nike", "likes": 5645333, "category": "Product/service", "website": "http://www.facebook.com/nike", "username": "nike", "description": "Nike | Facebook", "talking_about_count": 44336 } 

For more information, refer to this link.

[EDIT]: Facebook api updated: you need an access token to receive data from this endpoint now.

+4
source
  • Log in to the facebook developer console at:

    developers.facebook.com

  • Here, create a new facebook app for your website / page:

    My Apps > Add a New App > Website

+2
source

All Articles