FB.getSession() 返回 null

发布于 2024-11-03 22:56:40 字数 911 浏览 0 评论 0原文

在我的一个应用程序中,我使用客户端 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

情话墙 2024-11-10 22:56:40

使用非异步方法后它起作用了。

代码

<script src="http://connect.facebook.net/en_US/all.js"></script>
<script>
FB.init({
    appId  : '00000000000',
    status : true, // check login status
    cookie : true, // enable cookies to allow the server to access the session
    xfbml  : true  // parse XFBML
});


$(function(){
    //var session = FB.getSession();

    alert(FB.getSession());
})

</script>

不知道为什么它不能使用异步方法。

It worked after using non async approch.

Code

<script src="http://connect.facebook.net/en_US/all.js"></script>
<script>
FB.init({
    appId  : '00000000000',
    status : true, // check login status
    cookie : true, // enable cookies to allow the server to access the session
    xfbml  : true  // parse XFBML
});


$(function(){
    //var session = FB.getSession();

    alert(FB.getSession());
})

</script>

No idea though why didnt it worked with an async approach.

老子叫无熙 2024-11-10 22:56:40

这只是因为 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文