嗨,我对最近在我的(较新的)应用程序中弹出的 Facebook 错误感到困惑:应用程序运行良好,直到我禁用沙盒模式并尝试以普通用户身份测试应用程序。
当以普通用户身份单击登录按钮时,我得到:
“发生错误。请稍后再试”或有时:“API 错误描述:发生未知错误错误消息:kError 1349045:找到无效的平台会话。:无效已找到平台会话。” 有时会出现正常的权限对话框,但在询问扩展权限后,我也收到错误消息...
这是我的代码:
window.fbAsyncInit = function() {
FB.init({
appId : 'XXXXXXXXXX', // App ID
channelUrl : '//' + window.location.hostname + '/fbchannel.html', // Channel File
status : true, // check login status
cookie : false, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
};
$(function(){
$('.login').click(function(e) {
e.preventDefault();
FB.login(function(response) {
if (response.authResponse) {
FB.api('/me', function(response) {
$('#output').text('Good to see you, ' + response.name + '.');
});
} else {
$('#output').text('User cancelled login or did not fully authorize.');
}
}, {scope: 'email, user_photos, publish_stream, user_likes'});
// Additional initialization code here
});
});
// Load the SDK Asynchronously
(function(d){
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
ref.parentNode.insertBefore(js, ref);
}(document));
我已经尝试启用/禁用增强的身份验证对话框,并且正确设置了域、facebook-app url 和网站。对于应用程序的管理员来说,一切正常......有人知道我做错了什么或有同样的问题吗?