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.

This problem had just showed up in my app when I view it on the native Android browser in ICS and Jellybean. All works as intended on desktop browsers and even Chrom for Android. This has occurred in the past few days, was working fine last week, and nothing in the code has changed.

The following code, which is a simplified version of what my app does, is essentially what I'm doing to initiate a connection to FB. I'm expecting the alerts in A and B, or A and C will pop, but instead, nothing happens.

window.fbAsyncInit = function () {
    FB.init({
        appId: '', // App ID
        channelUrl: 'http://localhost/fb/channel', // Channel File
        status: true, // check login status
        cookie: true, // enable cookies to allow the server to access the session
        xfbml: true // parse XFBML
    });

    FB.getLoginStatus(function (response) {
        alert("any response"); //<-- A
        if (response.status == 'connected') {
            alert("connected"); // <-- B
        } else {
            //somehow user was not already signed in or did not fully authorize
            FB.login(function (response) {
                if (response.authResponse) {
                    alert("connected"); // <-- C
                } else {
                    console.log('User cancelled login or did not fully authorize.');
                }
            });
        }
    });
};

// 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));

Anyone experiencing that same and have a workaround or solution?

share|improve this question
theres a lot of us with the same issue: stackoverflow.com/questions/15364827/… – Akshat Mar 12 at 19:15
Zynga is reporting the error now as well. FB has made it a High priority: developers.facebook.com/bugs/… – Lounge9 Mar 13 at 5:42
Update: Facebook will release a fix on Tuesday 26 March link – Lounge9 Mar 19 at 22:56
Confirmed, this has been fixed! – Lounge9 Mar 27 at 1:02
Now apparently is broken again. Argh Facebook! – Lounge9 Mar 27 at 19:19
show 1 more comment

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.