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>