Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to get users' friends check-ins using facebook graph api. I am using FQL to get the job done. However, I am having a problem as the same query executes well in the graph api explorer but returns a null data set while executing in php. This is the code.

$fql_query_url = 'https://graph.facebook.com/'
. '/fql?  q=SELECT+page_id+from+checkin+WHERE+author_uid+in(SELECT+uid2+FROM+friend+WHERE+uid1=me())'
. '&access_token=' . $accesstoken;
$fql_query_result = file_get_contents($fql_query_url);
$fql_query_obj = json_decode($fql_query_result, true);

when I echo the $fql_query_obj I get an array but it is null.

share|improve this question
Call the URL directly in your browser. – CBroe Nov 22 '12 at 15:41
Access token could not be decrypted – Read Q Nov 27 '12 at 12:05

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.