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 a newbie to FB... so I used the latest PHP DSK and want to simply access user data

$facebook = new Facebook(array(  
    'appId'  => 'xxxx',  
    'secret' => 'yyyyy',  
    'cookie' => true  
)); 
$user = $facebook->getUser();
  if ($user) { // Checks if there is already a logged in user
  try {
    // Proceed knowing you have a logged in user who's authenticated.
    $user_profile = $facebook->api('/me');
  } catch (FacebookApiException $e) {
    error_log($e);
    $user = null;
   }
}
else { //Ask for bare minimum login
   $login_url = $facebook->getLoginUrl();
   header("Location: ".$login_url); 
}

Now my problem is that the $user is FB logged in, but $facebook->api('/me') not only fails, but I get no App authorization dialog either ??? What am I doing wrong ?

share|improve this question
I get the following error OAuthException: An active access token must be used to query information about the current user. What to do with it. – millebii Sep 5 '11 at 8:16
This is a bad practice. Because if the users didn't authorize your app he will keep getting redirected to the $login_url!! – ifaour Sep 5 '11 at 9:07
@ifaour and what would be a good practice for you ? – millebii Sep 5 '11 at 13:15
handling the case when a user clicks on "Don't Allow" and redirect him to another page. Otherwise you'll end up with infinite loop! Search for "Don't Allow" in the authentication document. – ifaour Sep 5 '11 at 14:15

2 Answers

up vote 1 down vote accepted

Eventually found my error so for the record:

$facebook = new Facebook(array(  
    'appId'  => 'xxxx',  
    'secret' => 'yyyyy',  
    'cookie' => true  
 )); 
$user = $facebook->getUser();
  if ($user) { // Checks if there is already a logged in user
  try {
    // Proceed knowing you have a logged in user who's authenticated.
    $user_profile = $facebook->api('/me');
  } catch (FacebookApiException $e) {
    // Will throw the very first time as the token is not valid
    error_log($e);
    $user = null;
   }
}
// $user is null : $user is either not logged in or the token is not valid
if(!$user) { //Ask for bare minimum login
    $login_url = $facebook->getLoginUrl();
   header("Location: ".$login_url); 
}
share|improve this answer

Try the FB demo script at : https://github.com/facebook/facebook-php-sdk/blob/master/examples/example.php

See if that works

share|improve this answer

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.