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.