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 am trying to print out a list of a user's facebook friends. However, when I use the code below, I keep getting the error: Uncaught OAuthException: An active access token must be used to query information about the current user (even when I include the Auth Token). Not sure what is wrong. Thanks in advance for your help.

<?php
    }
    else{


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

        $fbuser = $facebook->getUser();

        echo $fbuser;

        $friends = $facebook->api('me/friends');
        foreach ($friends as $key=>$value) {
            sort($value);
            foreach ($value as $fkey=>$fvalue) {

                //I've tried this...
               echo '<img src="https://graph.facebook.com/'.$fvalue[id].'/picture">';


               //and I've tried this with the Auth Token (still not working).
            echo '<img src="https://graph.facebook.com/'.$fvalue[id].'/friends?fields=picture&access_token=<access token>" width="50" height="50" title="'.$fvalue[name].'" />';
            }
        }

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

        echo '<a href="?logout=1">Log Out</a>';
    }
    ?>
share|improve this question
   
Are you getting any value for $fbuser ? – Anvesh Saxena Mar 11 at 8:15
1  
I solved this by using fbuser instead of me; thank you anyways. – user1072337 Mar 11 at 22:57

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.