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>';
}
?>
$fbuser? – Anvesh Saxena Mar 11 at 8:15