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 am using the following code to authenticate whether users are logged in or not. While users can log in, they have to click the login button twice. Additionally, sometimes even after they click the log-in button twice, my "user info" part of the page (earlier in the page than the content) shows them as logged out while the actual page shows them as logged in.

Here is the code. Could someone suggest a better way of handling log-ins?

function isLoggedIn($facebook) {
    if (isset($facebook) and $facebook->getUser() != 0) {
        // UserID exists, but user may still not be logged in. Let's check:
        try {
            $facebook->api('/me', 'GET');
            // If this succeeds, then they are logged in.
            return true;
        } catch(FacebookApiException $e) {
            // Some kind of error, so not logged in.
            if(session_id() === '')
                session_destroy();
            return false;
        }
    } else {
        if(session_id() === '')
            session_destroy();
        return false;
    }
}

Thanks!

share|improve this question
1  
Is your app on Facebook (Canvas Page)? – ori Jan 24 '12 at 7:59
No, it's a website on its own. – Jay Konieczny Jan 24 '12 at 16:41
I have exactly the same problem! And I am finding no answer's anywhere :( did you get anywhere with this? – Chud37 Feb 28 at 20:08

1 Answer

$facebook = new Facebook(array( /* the data */));
$user = $facebook->getUser();
if($user) {
  //loged
} else {
  //not loged
}

is enough

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.