我有一个应用程序作为管理员,一切都作为测试用户工作 - 没有!
我的代码是:
var fbAsyncInit = 函数() {
FB.init({
appId : [APP_ID],
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true,
oauth : true
});
FB.login(function(response)
{
if (response.session)
{
if (response.perms)
{
alert('user is logged in and granted some permissions: ' + response.perms);
}
else
{
alert('logged in but didnt grant permissions');
}
}
else
{
alert('not logged in');
}
},
{scope:'publish_stream'});
控制台日志响应是:
Object {authResponse: undefined, status: "not_authorized"}
并且测试用户总是得到未登录警报
我真的不知道如何处理这个设置,所以它会起作用