1

ユーザーID、名前、電子メールを取得しようとしています。ID と名前は取得できますが、メールは取得できません。私はこのコードを持っています:

<html>
<head></head>
body>
<div id="fb-root"></div>
<script>
  window.fbAsyncInit = function() {
  FB.init({
    appId      : 'xxxxxxxxxxxx',
    status     : true,
    cookie     : true, 
    xfbml      : true  
  });

  FB.Event.subscribe('auth.authResponseChange', function(response) {

    if (response.status === 'connected') {
      testAPI();
    } else if (response.status === 'not_authorized') {
      FB.login();
    } else {
      FB.login();
    }
  });
  };

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

  function testAPI() {
    FB.api('/me', function(response) {
      console.log(response.name + '---'+response.email);
    });
  }
</script>

<fb:login-button show-faces="true" width="200" max-rows="1"     scope="public_profile,email"></fb:login-button>

</body>
</html>

出力は次のとおりです。

FirstName LastName---未定義

電子メールが定義されていないのはなぜですか? また、入手可能なすべての情報を入手したいと考えています。どのように?

4

2 に答える 2

10

テストアプリでコードを試してみましたが、同じ問題が発生しました。その問題を解決するためにこれを試してみましたが、電子メールとフルネームも取得できました。

これに置き換えてください -

FB.api('/me?fields=name,email', function(response) {
      console.log(response.name + '---'+response.email);
    });
于 2015-08-11T11:04:04.600 に答える