1

次の権限を持つ Facebook アプリを作成しました: emailuser_birthday user_education_history user_hometownuser_likes friends_birthday friends_education_history friends_hometown friends_likes

プレビュー ログイン ダイアログをクリックすると、すべての権限が表示されます。

しかし、Javascript コードを介してアプリにアクセスするために使用すると、

<html>
<body>
<div id="fb-root"></div>
<script>
 // Additional JS functions here

window.fbAsyncInit = function() {
FB.init({
  appId      : '483353595041064', // App ID
  channelUrl : 'channel.html', // Channel File
  status     : true, // check login status
  cookie     : true, // enable cookies to allow the server to access the session
  xfbml      : true  // parse XFBML
 });

// Additional init code here
FB.getLoginStatus(function(response) {
  if (response.status === 'connected') {
    alert("Welcome");
  } else if (response.status === 'not_authorized') {
    login();
  } else {
    // not_logged_in
  }
 });


 };

 function login() {
FB.login(function(response) {
    if (response.authResponse) {
        // connected
        testAPI();
    } else {
        // cancelled
    }
});
}

 function testAPI() {
  console.log('Welcome!  Fetching your information.... ');
  FB.api('/me', function(response) {
    console.log('Good to see you, ' + response.name + '.');
  });
 }
// 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));
</script>
</body>
</html>

許可を得て基本情報のみを表示できます。

プレビュー ボックスの権限が実際のログイン ボックスに反映されないのはなぜですか?

4

1 に答える 1

1

これは、ログイン時に (コードで) アクセス許可を設定しなかったためです。これを試して-

FB.login(function(response) {
  if (response.authResponse) {
      // connected
      testAPI();
  } else {
      // cancelled
  }
},{scope:'email, etc...'});
于 2013-01-10T10:22:28.393 に答える