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.

Why is the following not working?

// Login or logout url will be needed depending on current user state.
if ($user) {

    $logoutUrl = $facebook->getLogoutUrl();

} else {

    $loginUrl = $facebook->getLoginUrl();
    header("Location: ".$login_url);

}

Using xdebug, I can see that it is going through the else section, but when it gets to the end of the file, it stays on the current page, instead of opening the new login_url page which should show the facebook login screen.

Anyone know why it's not going to the facebook page?

share|improve this question

closed as too localized by blahdiblah, Jay Gilford, jadarnel27, joran, Mathieu Imbert Mar 7 at 4:26

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

3 Answers

I used this solution in php:

$loginUrl = $facebook->getLoginUrl(array(
            'scope' => $scope,
            'redirect_uri' => $app_url,
            ));


            echo "<script type='text/javascript'>top.location.href = '$loginUrl';</script>";
share|improve this answer

Try this:

$facebook = new Facebook(array(
  'appId'  => '', // app id
  'secret' => '', // the secret
));

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

// Login or logout url will be needed depending on current user state.
if ($user) {
  $logoutUrl = $facebook->getLogoutUrl();
} else {
  $loginUrl = $facebook->getLoginUrl();
  header("Location: ".$login_url); // the user is not logged in, redirect him to the login page
  exit();
}
share|improve this answer
Correct me if I am wrong, but the only difference I see is the exit()? I have already tried this and it made no difference. – oshirowanen Dec 7 '12 at 11:34
up vote 0 down vote accepted

Figured out the problem. I had a typo... I was assigning the url to $logoutUrl and was trying to get the url from $logout_url...

Thanks

share|improve this answer

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