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.
try {

  $friends = $facebook->api('/me/friends');

} catch (FacebookApiException $e) {

  error_log($e);

}

Shows :Fatal error: Uncaught OAuthException: An active access token must be used to query information about the current user. thrown in C:\wamp\www\fb\facebook_php_sdk\src\base_facebook.php on line 1106

share|improve this question
2  
“please help!” – Please read documentation! – CBroe Jun 28 '12 at 7:37

1 Answer

up vote 3 down vote accepted

You must have access token for this operation. First you request for access token like this:

$my_access_token=$facebook->getAccessToken();

Then you can request for friend list like this:

try {

$friends = $facebook->api('/me/friends',array('access_token'=>$my_access_token));
} catch (FacebookApiException $e) {

error_log($e);
}

This might work. I this works,then accept this answer! Happy Coding!

share|improve this answer
@asutosh thanks. – Niladri Das Jun 28 '12 at 9:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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