I'm creating a sample html file for testing fb login. I used the code from the facebook developer page as follows but cannot get FB.getLoginStatus to be called. For my facebook app settings i have sandbox mode NO and put a random site url:
<!DOCTYPE html>
<html>
<head>
<title>Example</title>
</head>
<body>
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
// init the FB JS SDK
FB.init({
appId : 'MYAPPID', // App ID from the App Dashboard
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?
});
// Additional initialization code such as adding Event Listeners goes here
FB.getLoginStatus(function(stsResp) {
alert('get login status callback!');
});
};
// 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>
</body>
</html>
//connect.facebook.net/en_US/all.jsis a “protocol-relative” URL – it lets the browser decide whether to use HTTP or HTTPS when requesting the resource. But of course this doesn’t work when you’re testing from your file system, without a local web server. Puthttp:in front of it to get the JS SDK to load. – CBroe Oct 24 '12 at 22:48