我想知道为什么似乎没有执行“else if”案例response.status === 'not authorized'
和“else”案例(“未知”,即用户未登录到facebook)。当我登录到我的应用程序时,会在response.stats ===
'connected'
. 但是,当我在 Chrome 中打开隐身模式时,不会调用其他其他情况下的 testAPI() 函数。有谁知道为什么?
window.fbAsyncInit = function() {
FB.init({
appId : 'appnumberhere', // App ID
channelUrl : '//localhost/appname/channel.php', // Channel File
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
FB.Event.subscribe('auth.authResponseChange', function(response) {
if (response.status === 'connected') {
testAPI(); // works
} else if (response.status === 'not_authorized') {
testAPI(); // not called. Nothing in console.
FB.login();
} else {
testAPI(); // not called. Nothing in console.
FB.login();
}
});
}); // end async init function
testAPI 函数:
function testAPI() {
console.log('Welcome! Fetching your information.... ');
FB.api('/me', function(response) {
console.log('Good to see you, ' + response.name + '.');
});
}
作为旁注,如果我没有登录,我也不会看到弹出 facebook 登录对话框,这是我认为 fb.login() 应该调用的。
额外的旁注
另外,奇怪的是,我需要<script src="//connect.facebook.net/en_US/all.js"></script>
将 FB SDK 包含<script>(function(d){ var js,....</script>
在我的频道文件中以使我的应用程序正常工作。否则,某些部件无法加载。不确定这是否相关,但这很奇怪。