2012-07-11 230 views
0

我在本地計算機上使用Facebook身份驗證,直到今天早上它一直工作正常。我無法弄清楚爲什麼我連接時拒絕訪問。ISP導致Facebook訪問被拒絕403

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

滑稽,但我認爲它的我的ISP我切換回我平時的網絡和它的作品就好了。我能做些什麼呢? – user1373670 2012-07-11 05:22:11

回答

0

嘗試用window.location.reload(true)代替window.loaction.reload()

如果不能解決試圖像另一種方式的問題:

window.location.replace(window.location.href) 
相關問題