In one of my application I am using client side Facebook javascript api to track user's facebook login status.
I have got user already connected with facebook application, and user is logged in to the facebook.
Now when I call FB.getSession() it returns null, on calling FB.getLoginStatus() also does not give me response.session....
This behavior is different in different browser, it works fine in chrome but not in firefox 4. I cleared the cookies in firefox still not working as expected.
Is this client side api trusted or should i opt for server side api?
code:
window.fbAsyncInit = function() {
FB.init({
appId: '0000000000',
status: true,
cookie: true,
xfbml: true
});
FB.getLoginStatus(function(response) {
if (response.session) {
// This block should have been called.
alert('logged in')
} else {
// no user session available, someone you dont know
alert('not logged in')
}
}, true);
var session = FB.getSession(); //Must not return null...
};
Any idea?