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.

App Type: Facebook app running on mobile

Device: iPod Touch

SDK: Javascript

What happens:

When calling FB.Login the user launches the authentication dialogue where they are able to click Install. However, after pressing Install the Facebook authentication dialogue displays a loading animation indefinitely.

The user does in fact successfully authenticate and is able to continue using the app if they cancel the authentication dialogue and reload the app.

What should happen:

The user should launch the authentication dialogue, click Install and then be directed back to the app.

My code:

FB.getLoginStatus(function(r){

    // If user connected
    if(r.status === 'connected'){
        options.onConnected();
    }

    // If user not connected
    if(r.status !== 'connected'){
        FB.login(function(r){
            if(r.status === 'connected'){
                options.onConnected();
            } else {
                options.onFail();   
            }
        }, {scope: config.permissions.join(','), redirect_uri: config.site_path});
    }

});

Notes:

This may be a bug, but I'll do some testing across some other devices first before logging it with Facebook.

Works perfectly on desktop and Android.

share|improve this question

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.