mihsathe
mihsathe

Reputation: 9154

friend list in facebook

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

Answers (1)

Klaus Byskov Pedersen
Klaus Byskov Pedersen

Reputation: 120997

The data structure returned by the API is different than you think. Try echo count($friends['data']); instead.

Upvotes: 4

Related Questions