我一直在使用Facebook附加軟件開發應用程序,以使Facebook用戶能夠登錄並訪問應用程序以訪問個人資料圖片等詳細信息。MVC App不再通過Facebook登錄
昨天該應用程序運行良好,我的開發工作正常進行。
今天早上我試圖登錄來檢查我得到了多少,並且遇到Access令牌錯誤消息。
個別部分視圖會加載好,但整個網站不會。在進一步的調查中,我發現登錄屏幕正在分配一個新的訪問令牌,但是當該站點嘗試啓動主頁面時,令牌爲空。我的日誌中
如下: -
<html>
<head>
<title>Log On</title>
</head>
<body>
<div id="fb-root"></div>
<script type="text/javascript">
window.fbAsyncInit = function() {
FB.init({
appId : '***app no***',
status : true,
cookie : true,
xfbml : true,
oauth : true
});
FB.Event.subscribe('auth.login', function() {
window.location.reload();
});
};
(function(d){
var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
d.getElementsByTagName('head')[0].appendChild(js);
}(document));
</script>
<div class="fb-login-button" data-scope="email">
Login with Facebook
</div>
</body>
</html>
這是油炸我的頭。
返回的錯誤是(OAuthException)必須使用活動訪問令牌來查詢有關當前用戶的信息。
希望這是足夠的信息供人找到解決方案。
非常感謝
試過這個,但不幸的是它對結果沒有任何影響。仍然收到相同的錯誤消息。 –