Skip to content Skip to sidebar Skip to footer

FQL Query To Fetch All Data Of A Facebook Page

I want to fetch all the accessible data of a facebook page (Only page table data is enough for me now). I only have the page url of that page. After observing some urls i found tha

Solution 1:

For the columns to query from page see: http://developers.facebook.com/docs/reference/fql/page/

the FQL will look like for by ID:

SELECT {columns} FROM page WHERE page_id=PAGEID

and for by page name:

SELECT {columns} FROM page WHERE username='PAGEUSERNAME'

Happy coding!


Post a Comment for "FQL Query To Fetch All Data Of A Facebook Page"