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 add Facebook login functionality to my web site using Javascript. I have called FB.init and FB.login and get the expected popup window that asks me to log in with my Facebook credentials. The call to FB.login requests user_birthday and email permissions so I also get the expected dialog that asks me to allow those permissions. If I accept, the login works and control returns to my parent page.

If I do not accept the permissions (hit the Cancel button), what happens next seems to be inconsistent. What I was hoping was that the popup window would go away and return control to the parent window which would then be able to handle the denied response. Ultimately I want to give my users a message letting them know what happens when they cancel.

Instead, I sometimes see the popup window redirect to the main Facebook page that you see when you log directly into Facebook. Sometimes the popup window becomes blank and just sits there (it is pointing to the ChannelUrl page that I specified in the FB.init call). In both cases, control is not returned to the parent page until I manually close the popup window.

Sample Code:

<html>
<body>
<div id="fb-root"></div>
<script language="Javascript">
window.fbAsyncInit = function() {
    FB.init({
        AppId      : 'XXXXXXX',
        channelUrl: 'http://www.mydomain.com/channel.html', //custom channel
        status: true,
        cookie: true, 
        xfbml:  true,
        oauth: true
  });

};

// Load the SDK Asynchronously
(function(d){
     var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
     if (d.getElementById(id)) {return;}
     js = d.createElement('script'); js.id = id; js.async = true;
     js.src = "//connect.facebook.net/en_US/all.js";
     ref.parentNode.insertBefore(js, ref);
}(document))

function fbLogin()
{
    FB.login(function (response){
        if (response.authResponse) {
            Debug("Auth Logged in");
        }
        else
        {
            Debug("Auth failed");
        }
    }, {scope:'user_birthday,email'});
}

function Debug(psMessage)
{  // something to provide feedback on what happened...
    var objDebug = document.getElementById("Debug");
    var objDate = new Date();
    var sTime = objDate.getHours() + ":" + objDate.getMinutes() + ":" + objDate.getSeconds();
    objDebug.innerHTML = sTime + " - " + psMessage + "<br>" + objDebug.innerHTML;
}
</script>
<form>
<input type="button" value="Log in" onClick="fbLogin();">
<br>
<br>
<br>
<br>
<div id="Debug"></div>
</form>

</body>
</html>

I have tried a variety of things. I have deleted and created a new application. I created the channelUrl parameter (it only includes <script src="//connect.facebook.net/en_US/all.js"></script>).

Does anyone have any insight as to what I’m doing wrong (this seems to happen at least in IE8, Safari 5.0.5, and Firefox 11.0 all on Windows XP)?

Thanks for any help!

share|improve this question
I'm having the same exact issue, but sometimes the window just hangs at /connect/xd_proxy.php?. So frustrating. – Daniel O'Connor Apr 7 '12 at 2:24

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.