FB.getSession() 返回 null
在我的一个应用程序中,我使用客户端 Facebook javascript api 来跟踪用户的 Facebook 登录状态。
我已经让用户与 Facebook 应用程序连接,并且用户已登录到 Facebook。
现在,当我调用 FB.getSession() 时,它返回 null,调用 FB.getLoginStatus() 时也不会给我response.session....
这种行为在不同的浏览器中是不同的,它在 chrome 中工作正常,但在 firefox 4 中不起作用我在 Firefox 中清除了 cookie,但仍然无法按预期工作。
这个客户端 api 可信还是我应该选择服务器端 api?
代码:
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...
};
有什么想法吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用非异步方法后它起作用了。
代码
不知道为什么它不能使用异步方法。
It worked after using non async approch.
Code
No idea though why didnt it worked with an async approach.
这只是因为 FB.getSession() 未初始化。
您无法向 FB.getLoginStatus 添加事件,该事件会在 Facebook 初始化时触发 FB.getSession() 功能,从而使用异步方法。
It's simply because FB.getSession() isn't initialized.
You could't add an event to the FB.getLoginStatus which fires the FB.getSession() functionality when Facebook is initialized and thereby use the async approach.