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 trying to set up a call that will list out a certain number of a friends pictures for a logged in facebook user. It works to spit out the users' picture, but I cannot get the call for fb friends pictures. I'm sure you guys can solve this easily. Here is the code:

<?php

    if(!isset($_SESSION['logged_in']))
    {
        ?>


<?php
    }
    else{


        if (!class_exists('FacebookApiException')) {
            require_once('./src/facebook.php' );
        }
        $facebook = new Facebook(array(
                                       'appId' => $appId,
                                       'secret' => $appSecret,
                                       ));


        $fbuser = $facebook->getUser();

        echo $fbuser;

        echo $_SESSION['user_name'];
        echo '<img src="https://graph.facebook.com/'.$fbuser.'/picture">';

        echo '<img src="https://graph.facebook.com/'.$fbuser.'/friends/picture">';



        echo '<a href="?logout=1">Log Out</a>';
    }
    ?>
share|improve this question

closed as not a real question by CBroe, Jay Gilford, hohner, AbZy, Paul Lammertsma Mar 11 at 23:37

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 2 down vote accepted

You first need to get a list of the user friends calling /me?fields=friends. Then, you can only add their id to the picture urls just like you did with the user:

<img src="https://graph.facebook.com/{{friend_id}}/picture">
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.