每当我尝试将用户与使用 Facebook JavaScript SDK 进行身份验证的网站“断开连接”时,它会完全破坏用户的 Facebook 会话(例如,如果他们在单独的选项卡上登录 Facebook,他们将被要求登录再次)。我有以下客户端代码:
$('#logout').bind('click', function(){
if(FB.getSession() !== undefined){
//FB.logout();
// instead of logging out of facebook, just disconnect them
FB.api({
method: 'Auth.revokeAuthorization'
}, function(response){
console.log('auth revoke', response);
});
}
});
window.fbAsyncInit = function() {
FB.init({
appId: MYAPPIDHERE
,status: true
,cookie: true
,xfbml: true
});
FB.Event.subscribe('auth.sessionChange', function(response){
console.log(response);
location = location.href;
});
};
(function() {
var e = document.createElement('script');
e.async = true;
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
document.getElementById('fb-root').appendChild(e);
}());
假设 jQuery 在页面上。FB.api 调用成功,但似乎比应有的“更强大”。它与调用 FB.logout() 的效果基本相同。
我做错了什么,还是应该提交一个错误?
谢谢!