I am trying to use FB.Login to log the user into my website using facebook. It works fine in most cases. But when I click the login button immediately after de-authorizing the app, FB.Login() opens a pop-up with the following message " An error occured. Please try again later". If I refresh the page with the login button before clicking the button, then it works fine. It looks like FB.Login does not recognize that the user has just de-authorized the app, unless the page is refreshed. I noticed that the url of the authorization Dialog has an additional access_token parameter when it fails, ie when the button is cliked right after de-authorizing the app. Please help.
Here is my code:
<body>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<div id="fb-root">
</div>
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script>
// initialize the library with your Facebook API key
var AppID = '<%=AppID%>';
window.fbAsyncInit = function() {
FB.init({
appId: AppID,
status: true,
cookie: true,
xfbml: true
});
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()"><img src="images/FacebookSmall.gif" /></a>
<script type="text/javascript" language="javascript">
function WindowOpen() {
FB.login(function(response) {
if (response.authResponse) {
var access_token = response.authResponse.accessToken;
var originalPage = '<%=orgPg%>';
window.location.href = "../FacebookAuth.asp?src=2&origPg=" + originalPage;
}
else {
alert('User cancelled login or did not fully authorize.');
}
}, { scope: 'email' }
);
}
</script>
Thanks in advance.