I'm using the latest PHP-SDK from Facebook to test some features. I just tried to display all friends with the following code:
$friends = $this->facebook->api('/me/friends');
$counter = 0;
foreach($friends['data'] as $friend) {
echo 'Name: ' . $friend['name'] . '<br />';
echo 'ID: ' . $friend['id'] . '<br /><br />';
$counter++;
}
echo 'Total friends: ' . $counter . '<br /><br />';
Everything is working fine, except one thing. I have 244 friends, but it only displays ($counter) 229.
Why?