Reputation: 7151
For most (all?) Facebook pages, I can access its graph data by getting the last part of its URL and adding it to http://graph.facebook.com. For example, http://graph.facebook.com/AKON pulls up data for http://www.facebook.com/AKON.
However, here's a page that doesn't work like that:
http://www.facebook.com/codblackops
Instead, http://graph.facebook.com/codblackops returns False.
What gives? And is there any way to figure out the correctly graph address from the www.facebook.com/codblackops page (or page source)?
Upvotes: 0
Views: 991
Reputation: 50982
The biggest problem is even I have no access to that site. It's probably private/hidden, because it's redirecting me to the homepage. Check permissions and try again
Upvotes: 0
Reputation:
If a page returns false then it is either because you're missing access_token privileges or due to geographical restrictions.
In order to make an access token that does not expire you can use the following question as a guideline: Do Facebook Oauth 2.0 Access Tokens Expire?
Upvotes: 1