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.