我在使用 Koala Gem 注销时遇到问题,想知道它们是否相关。
下面是我的 Javascript 代码:
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '310521258992725', // App ID
channelUrl : '//localhost:3000/channel', // Channel File
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
// Additional initialization code here
// whenever the user logs in, we refresh the page
FB.Event.subscribe('auth.login', function() {
setTimeout('document.location.reload()',0);
});
FB.logout(function(response) {
FB.Auth.setAuthResponse(null, 'unknown');
setTimeout('document.location.reload()',0);
});
};
// Load the SDK Asynchronously
(function(d){
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
ref.parentNode.insertBefore(js, ref);
}(document));
</script>
以下是我的 Facebook 标签:
<div id="fb-root"></div>
我的注销代码:
<a href="/" onclick="FB.logout();">Logout</a>
登录工作完美,我可以执行 api 调用没问题。但是,在我注销后,我收到以下错误:
OAuthException: Error validating access token: The session is invalid because the user logged out. app/controllers/application_controller.rb:58: in 'fbookinvite_check'
下面是我的 fbookinvite_check 代码:
def fbookinvite_check
unless @facebook_cookies.nil?
@access_token = @facebook_cookies["access_token"]
@graph = Koala::Facebook::GraphAPI.new(@access_token)
if !@graph.nil? == true
@friends = @graph.get_object("/me/friends")
end
end
end
问题似乎是cookie是访问令牌无效,重定向后@graph没有显示为nil。如果我刷新,则页面加载没有问题,但是当我注销时出现错误。
也许有一种方法可以在不关闭应用程序的情况下捕获@graph.get_object 错误?
任何建议将不胜感激!!