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 calling FB.login when user clicks my facebook login button. My issue is that, after one of the following happens in another tab,

1)current fb user logs out 2)another user logs in 3)fb user de-athorizes my app,

and the user clicks my facebook login button without refreshing the page, the auth popup opens with the following message : "An error occured. Please try again later". If the user refreshes the page before clicking the facebook login button, the most current status is recognized and everything works fine.

My code:

<body>   

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>

<div id="fb-root">
</div>

<!-- pull down Facebook's Javascript SDK -->
<script src="http://connect.facebook.net/en_US/all.js"></script>



<script type="text/javascript">

 window.fbAsyncInit = function() {
        FB.init({
            appId: '12345..',
            status: true,
            cookie: true,
            xfbml: true,
            channelUrl: 'http://xxxx.com/channel.asp'
        });

        FB.Event.subscribe('auth.login', function(response) {
            alert('logged in');
        });

        FB.Event.subscribe('auth.logout', function(response) {
            alert('logged out');
        });

        FB.Event.subscribe('auth.statusChange', function(response) {
            alert('Status changed');
        });
    }; 

</script>

<a href="#" onclick="WindowOpen()">FB Login</a>

<script type="text/javascript" language="javascript">
    function WindowOpen() {

        FB.login(function(response) {
        if (response.authResponse) 
            {
                var access_token = response.authResponse.accessToken;
                alert(response.authResponse.userID);                
            }
            else 
            {
                alert('User cancelled login or did not fully authorize.');
            }
        }, { scope: 'email' }
            );   

    }
 </script> 
</body>
share|improve this question
This is a case of the browser not syncing state between browser tabs, which I think is intentional and reasonable on the part of Firefox, Chrome, and the others. Wouldn't this happen with any app that requires a login. For example, I see the same behavior when using Gmail. – Donn Lee Aug 15 '12 at 22:53
Thanks for your input. But I see that other websites with facebook connect are able to recognize the most current user in facebook or in fact any other facebook status changes that happen in another tab,even without a refresh. I would like my website to behave the same way. Please advice on how to achieve this. I tried subscribing to statusChange and authResponseChange events. But I find that they are not fired when the status changes. – Pia Palackathadom Aug 16 '12 at 13:05
I was able to get the most current status by calling FB.getLoginstatus() every few seconds like suggested in this link:stackoverflow.com/questions/9758425/…. But then, to the user,it looks like the page is being refreshed every time FB.getLoginStatus() is called. So I am trying to avoid that. I am looking for another way to get the most current status of the facebook user without a page refersh. – Pia Palackathadom Aug 16 '12 at 13:41
Please check the website toluna.com. Any status change in another tab is recognized even without a refresh. I am looking for a way to implement that in my website using client side authentication. Any help is greatly appreciated. Thanks in advance. – Pia Palackathadom Aug 16 '12 at 15:17

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.