-2

我似乎无法获得我的 facebook 连接的权限。这是我所拥有的:

window.fbAsyncInit = function() {
    FB.init({
        appId      : 'myID', // App ID
        channelUrl : 'myChannel', // Channel File
        status     : true, // check login status
        cookie     : true, // enable cookies to allow the server to access the session
        xfbml      : true,  // parse XFBML
        oauth      : true
    });
    FB.Event.subscribe('auth.authResponseChange', function(response) {
        if (response.status === 'connected') {testAPI();} 
        if (response.status === 'not_authorized') { FB.login(function(response) {}, {scope: 'email,user_likes'});} 
        else { FB.login(function(response) {}, {scope: 'email,user_likes'});}
    });
};

(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));

当我点击登录按钮时,它会询问:

MyApp 想访问您的公开个人资料和朋友列表。

我做错了什么?

4

1 回答 1

1

当您设置范围时,您没有授予应用程序权限。您只是在告诉您的应用程序需要的权限。当您第一次单击登录按钮时,该对话框显示“MyApp 想要访问您的公开个人资料和朋友列表”。出现。您需要通过单击该对话框中的确定按钮或类似按钮来确认您向您的应用授予该权限。

除非您更改应用程序 ID 或密钥,或者您在 facebook 设置中手动撤销该应用程序的授权,否则您不需要再次这样做。

于 2013-06-11T08:48:44.503 回答