I am working on a Facebook application which is integrated with Facebook and am trying to get the user\'s FB session. As far as I understand, a common usage scenario is as follo
Try forcing loading the event:
FB.getLoginStatus(function(response) { alert('whoo hoo!!! getLoginStatus called the callback'); }, true);
It is stated in FB.getLoginStatus.
The event might be not fired in some situations.