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 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?

share|improve this question
The best way to know why would be to contact your missing friends and ask them about their Facebook settings. There is an option in your privacy settings to opt-out from Facebook apps. That could be the reason: "Turn off your ability to use apps, plugins, and websites on and off Facebook. After you turn this off, we will not store information about you when you use apps or websites off Facebook." – Mathieu Imbert Aug 8 '12 at 15:24
Those missing friends may have already deactivated their accounts. – Zany Aug 9 '12 at 10:35

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.