-1

I have two examples:

Example 1: https://www.facebook.com/cocacola

     I get "likes","description" at https://graph.facebook.com/cocacola/

     It work.

Example 2: https://www.facebook.com/selectivefitness I get errors at https://graph.facebook.com/selectivefitness/

Why example 2 does not working? How i can get "likes" "description" of https://www.facebook.com/selectivefitness

anhduc.bkhn
  • 695
  • 3
  • 10
  • 21
  • http://stackoverflow.com/questions/13739609/unsupported-get-request-in-facebook-graph-api – durrrutti Jan 07 '14 at 01:39
  • possible duplicate of [Graph API returns 'false' or 'Unsupported get request' accessing public Facebook Page](http://stackoverflow.com/questions/6843796/graph-api-returns-false-or-unsupported-get-request-accessing-public-facebook) – Igy Jan 09 '14 at 22:33

1 Answers1

1

It's because of restrictions on the page (either country restrictions or age restriction). You just need a valid Access Token to fix it.

Try making a request to the URL using that Access Token. Something like:

https://graph.facebook.com/selectivefitness?access_token={Access_Token}

You can always make use of Graph API Explorer to test your requests and queries.

Rahil Arora
  • 3,644
  • 3
  • 26
  • 43