user1355352
user1355352

Reputation: 71

Facebook Graph API - Find page by page id

Is it possible to find a Facebook page by page_ID?

I have a list of Facebook page id's - But I would like to be find and display the actual Facebook page and display some general information about that pages. Is this possible? I would appreciate a quick tutorial and links to other tutorials.

Upvotes: 3

Views: 3150

Answers (1)

cpilko
cpilko

Reputation: 11852

Yes, it's possible.

You can display any page by just adding the id to the end of the Facebook URL: http://facebook.com/ID.

As for general information about the pages, sending a request to https://graph.facebook.com/ID will return a JSON object with some basic details about the page. Unless the page owner has set restrictions on the page, no access token is needed.

As for tutorials, the Graph API pages on the Facebook Developer site and the Facebook Graph API explorer are the best places to start.

Upvotes: 4

Related Questions