在登录Facebook时,facebook2 current_facebook_user为nil



我一直在尝试使用Facebooker2作为通过Facebook在Rails中登录的手段。然而,Facebooker2的current_facebook_user函数以某种方式返回nil,即使我肯定在Facebook上登录。什么好主意吗?谢谢!

下面是我代码的要点:

在我的一个控制器中:

def check_login
    if current_facebook_user.nil?
        "This always gets returned, even though I'm logged into Facebook."
    else
        "This never gets run"
    end
end

Facebook JS。FB.Event.subscribe('auth.login', function(response) { ... }中的行重定向到上面的check_login函数。

<script>
    window.fbAsyncInit = function() {
        FB.init({
            appId : '123456789012345',
            status : true,  // check login status
            cookie : true,  // enable cookies to allow the server to access the session
            channelUrl : 'true',  // add channelURL to avoid IE redirect problems
            xfbml : true  // parse XFBML
        });
        FB.Event.subscribe('auth.login', function(response) {
            window.location = "http://www.mysite.com/check_login";
        });
    }; ( function() {
        var s = document.createElement('div');
        s.setAttribute('id', 'fb-root');
        document.documentElement.getElementsByTagName("body")[0].appendChild(s);
        var e = document.createElement('script');
        e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
        e.async = true;
        s.appendChild(e);
    }());
    function logout() {
        FB.logout();
        window.location = 'http://www.mysite.com/logout';
    };
</script>

如果您使用Facebook JavaScript SDK通过浏览器登录,则用户会话数据保存在浏览器中。因此,您的Rails代码不知道用户状态的变化。所以你必须显式地将有效的当前用户会话数据传递回你的服务器,这样你就可以维护一个有效的会话服务器端。

例如:

    FB.Event.subscribe('auth.login', function(response) {
        window.location = "http://www.mysite.com/check_login?session=" + JSON.stringify(response.session);
    });

相关内容

  • 没有找到相关文章

最新更新