我在我的本地计算机上使用Facebook Auth,它一直工作到今天早上。我无法弄清楚为什么连接时会拒绝访问。
http://facebook.com/en_US/all.js
这是我的脚本。我在几个浏览器中检查了它。
window.fbAsyncInit = function() {
FB.init({
appId: '". $AppID."',
cookie: true,
xfbml: true,
oauth: true
});
FB.Event.subscribe('auth.login', function(response) {
window.location.reload();
});
FB.Event.subscribe('auth.logout', function(response) {
window.location.reload();
});
};
(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);
}());
答案 0 :(得分:0)
尝试将window.loaction.reload()
替换为window.location.reload(true)
。
如果这不能解决问题,请尝试另一种方式:
window.location.replace(window.location.href)