I try to call FB.getLoginStatus within a function, in the past I never had an issue, even when completely logged out and unconnected to Facebook.
Now, very recently, when the user status is unknown, the function does not even call Facebook to verify if I'm logged in.
Please help.
<div id="fb-root"></div> <script src="http://connect.facebook.net/en_US/all.js" type="text/javascript"></script> <script type="text/javascript"> FB.init({appId: '<?php echo $applicationID; ?>', status: true, cookie: true, xfbml: true}); </script>– Eric C Oct 13 '11 at 9:20function fbloginLocal() { FB.getLoginStatus(function(response) { if (response.session) { document.patapasregister.submit(); } else { FB.login(function(response) { if (response.session) { document.patapasregister.submit(); } else { alert("not logged in again"); } }, {perms:'email, user_about_me, publish_stream', clicktoshowdialog:"inviteFriends"}); } }); }– Eric C Oct 13 '11 at 9:22