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 trying to use Facebook javascript library function : FB.getLoginStatus. This function works when the user is logged but fails when user is not logged to facebook.

Here is my code:

FB.getLoginStatus(function (response) {
    console.log('entering the function!');
    if (response.status === 'connected') {
        FB.api('/me', function (response) {
            if (response.name != undefined) {
                console.log("Welcome, " + response.name);
            }
        });
    } else if (response.status === 'not_authorized') {
        console.log('not logged to app');
    } else {
        // NEVER POPUP
        console.log('user not logged');
    }
});

The last event (user not logged never popup), when a user is not logged, the function is not event firing and I do not see the log [entering the function].

Do someone has an idea to detect if a facebook user is connected.

Regards, Linvi

share|improve this question

1 Answer

up vote 0 down vote accepted

I sent a bug report for this issue and Facebook developer reported that it was actually a current known issue.

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.