Reputation: 9154
I am trying to fetch friend list. I wrote following code..
$friends = $this->facebook->api('me/friends');
echo count($friends);
Answer was 1. (though it should have been 456). What am I doing wrong? Thanks for help.
Upvotes: 6
Views: 561
Reputation: 120997
The data structure returned by the API is different than you think.
Try echo count($friends['data']);
instead.
Upvotes: 4