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 just trying to get some basic stuff with the Facebook API working but I keep getting the error - Uncaught OAuthException: An active access token must be used to query information about the current user - even though I get redirected to an authentication page on facebook...As well, probably due to this, the value of $facebook->getUser is always zero. I know there are some posts on this but I can't seem to figure out what I'm doing wrong, I'm basically using the EXACT code given as example..:

require_once("facebook.php");

$facebook = new Facebook(array(
   'appId' => APP_ID, //these are both defined above in my code
   'secret' => APP_SECRET,
   'cookie' => true,
));

// Get User ID
$user = $facebook->getUser();
echo $user;

// We may or may not have this data based on whether the user is logged in.
//
// If we have a $user id here, it means we know the user is logged into
// Facebook, but we don't know if the access token is valid. An access
// token is invalid if the user logged out of Facebook.

if ($user) {
 try {
 // Proceed knowing you have a logged in user who's authenticated.
  $user_profile = $facebook->api('/me');
echo $user_profile->name;
} catch (FacebookApiException $e) {
error_log($e);
$user = null;
}
} else {
$login_url = $facebook->getLoginUrl($params = array('redirect_uri' => REDIRECT_URI,'scope' => PERMISSIONS_REQUIRED));
    $user_profile = $facebook->api('/me');
    echo $user_profile->name;
       // echo ("<script> top.location.href='".$login_url."'</script>");
}

 // Login or logout url will be needed depending on current user state.
 if ($user) {
 $logoutUrl = $facebook->getLogoutUrl();
 } else {
 $loginUrl = $facebook->getLoginUrl();
 }
share|improve this question
Are you getting back errors after being redirected back to your app from the login dialog? (See docs if you aren’t aware where to find these errors.) – CBroe Jul 18 '12 at 14:54

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.