Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting FB APP_ID from a FB Page

Tags:

facebook

Hello I would like to know if it possible to get a FB APP_ID if I had created a Facebook page (no normal user) or this ID is just for applications? Thanks

like image 959
Gonzalo Avatar asked Jan 13 '12 02:01

Gonzalo


4 Answers

If you are facebook user login your id and go to "https://developers.facebook.com" link for registration as a facebook developer.

After confirm facebook developer Go to "APPS" tab create new Apps by enter your desire site for example "http://chalachchabi.com/"

Facebook will provide your FB APP_ID for further uses.

like image 168
Shahidul Islam Molla Avatar answered Nov 13 '22 11:11

Shahidul Islam Molla


  1. Login to the facebook developer console at:

    developers.facebook.com

  2. Here create a new facebook app for your website / page:

    My Apps > Add a New App > Website

like image 45
Ujjwal Singh Avatar answered Nov 13 '22 10:11

Ujjwal Singh


If your question is whether you can use your FB Page ID as the fb:app_id meta tag, then no! Facebook's documentation is spare and contradictory on this.

like image 43
Manuel Meurer Avatar answered Nov 13 '22 10:11

Manuel Meurer


You do not have an app id but a page id.

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 info, Refer this link

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

like image 37
Hadrien Avatar answered Nov 13 '22 10:11

Hadrien