I am testing a standard javascript facebook app using simple javascript provided on their site. This is the first time I have tried this. It works on localhost in a browser to login and logout and when I point a UIWebView in the iPhone Simulator 6 at it I am able to logout succesfully (with complete redirect) and am able to login succesfully BUT it doesn't redirect back to the correct page. Rather, it just hangs on a white screen (restarting shows that it is in fact logged in)? Any idea what might be going on or seeing what my UIWebView is in fact doing?
<html>
<head>
</head>
<body>
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
// init the FB JS SDK
FB.init({
appId : '267813876xxxxxx', // App ID from the App Dashboard
//channelUrl : 'http://localhost:3000/channel.html', // Channel File for x-domain communication
status : true, // check the login status upon init?
cookie : true, // set sessions cookies to allow your server to access the session?
xfbml : true // parse XFBML tags on this page?
});
FB.getLoginStatus(function(response) {
if (response.status === 'connected') {
var uid = response.authResponse.userID;
var accessToken = response.authResponse.accessToken;
alert('you are connected with uid: ' + uid + ' and access token:' + accessToken);
} else if (response.status === 'not_authorized') {
alert('you are not authorized');
} else {
alert('you are not logged in');
}
});
FB.Event.subscribe('auth.authResponseChange', function(response) {
alert('The status of the session is: ' + response.status);
});
};
// Load the SDK's source 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));
</script>
<fb:login-button autologoutlink="true"></fb:login-button>
</body>
</html>
I can also provide screenshots if necessary.