I am trying to implement Facebook Connect in my website. 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,
- current Facebook user logs out
- another user logs in
- Facebook 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.
I was able to get the most current status by calling FB.getLoginstatus() every few seconds like suggested here. 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 refresh. Please advice.
<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>