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'm using the Facebook graph API to get my most popular statuses as determined by the number of likes and comments that they have received. My code is as follows:

$feed = 'https://graph.facebook.com/me/statuses?access_token='.$access_token.'';

$ch = curl_init(); 
curl_setopt($ch, CURLOPT_URL, $feed);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$curlout = curl_exec($ch);
curl_close($ch);
$response = json_decode($curlout, true);
$numba = count($response);

print_r($response);

When I try to print out the contents of the array, it says that the array is empty. Does anyone have any ideas as to why this is returning an empty array?

Thanks,

Lance

share|improve this question
Print $curlout and paste here. – hsz Aug 1 '11 at 14:44
Is your access token still valid? – M4V3R1CK Aug 1 '11 at 14:45
Are you generating a user or appplication access token? – jBit Aug 3 '11 at 14:48
application access token. why? how do i go about editing the access token permissions? – Lance Aug 3 '11 at 14:50

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.