Graph API returns ‘false’ or ‘Unsupported get request’ accessing public Facebook Page

Assuming the page is Alcohol gated (In the OP’s example the page was an alcohol page) you must access the page with an access token for a user who meets the alcohol restrictions. For alcohol specifically, any user over 21 should be able to do this, and for some markets it’s lower (depending on the … Read more

Facebook API: Get fans of / people who like a page

There is a “way” to get some part of fan list with their profile ids of some fanpage without token. Get id of a fanpage with public graph data: http://graph.facebook.com/cocacola – Coca-Cola has 40796308305. UPDATE 2016.04.30: Facebook now requires access token to get page_id through graph so you can parse fanpage HTML syntax to get … Read more

What are the Steps to getting a Long Lasting Token For Posting To a Facebook Fan Page from a Server

Here are some steps you can follow to get a never expiring token for your fan page: Firstly, you need to get the long lived user access token (that expires in 2 months). To get this, make the following call: GET /oauth/access_token? grant_type=fb_exchange_token& client_id={app-id}& client_secret={app-secret}& fb_exchange_token={short-lived-token} More details here. Let me know if you had … Read more