I've been having some problems with few Fan Pages and getting their details with Facebook Graph API. When I try to get the details for the Fan page, Graph API only returns "false", nothing else. This is not the situation with all Facebook Pages, just for few.

For example when I try to get the details for this page:
http://www.facebook.com/CaptainMorganMacedonia
like this:
https://graph.facebook.com/CaptainMorganMacedonia
it only returns false.

The page is public, has more than 25 fans, but still I have problem with taking the details of the page.
Is it something with Facebook, or the page have some bad configuration?

Thanks.

link|improve this question

44% accept rate
feedback

3 Answers

Assuming the page is Alcohol gated (since it seems to be, as it's an alcohol page) you must access the page with an access token for a user who meets the alcohol restrictions. In general, any user over 21 will be able to do this, and for some markets it's lower (depending on the drinking age in that market).

In general, if a page has demographic restrictions, A Page or App access token will not work here, only a user access token for a user meeting those restrictions

link|improve this answer
thanks so much, was banging my head for hours. facebook is such a pain in the ass. – Nick Aug 25 '11 at 17:07
Short version is that if a user can't see something on Facebook.com, we don't let that user see it via the API either, which means if something is restricted, your app needs to prove that you're acting on behalf of a user who can see the content, which is done by using their access token There are a few edge cases where this doesn't make perfect sense, but in general I think the behaviour is correct, if not necessarily obvious – Igy Aug 25 '11 at 17:15
feedback

I'm working through this problem myself, and I understand the relationship between Age restriction and Graph API for reading.

The source of my problem is in posting via the API to the Page's wall. The application is a WordPress plugin that posts when content goes live in the blog. The access token used for this posting is acquired by way of the manage_pages permission, and ultimately belongs to the user who sets up the plugin (in this case, one of the admins of the page).

If I turn off the age restriction on the page, the WordPress plugin works perfectly. Turn it back on, and the application fails to post.

So I totally get the logic behind the age-based restriction to the API, but in this case, with the user's access token being that of the admin of the page, I'm not sure why the posts are failing.

Any further insight?

link|improve this answer
Still looking for the answer, for now nothing. – Pece Nov 24 '11 at 13:33
feedback

I had this issue but it was a country restriction that was causing the problem (even though I was in the correct country). Removing it solved the problem. Check if you have any restrictions that might seem irrelevant, because they could be causing the blockage.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.