Facebook API获取电子邮件地址

时间:2013-05-21 12:57:01

标签: facebook facebook-javascript-sdk

我必须建立一个网站登录Facebook。能够向他们发送电子邮件是有道理的,但我无法从Facebook获取电子邮件地址。

我完全按照https://developers.facebook.com/docs/facebook-login/getting-started-web/的说明进行操作 我在FB.login中添加{scope:email}。

如何通过Facebook API获取电子邮件地址?

我的代码:

<div id="fb-root"></div>
<script>

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

  FB.Event.subscribe('auth.authResponseChange', function(response) {
    if (response.status === 'connected') {


    FB.api('/me', function(response) {

      console.log(response);
    });   

    } else if (response.status === 'not_authorized') {

       FB.login(function(response) {},{scope: 'email'});

    } else {


       FB.login(function(response) {}, {scope: 'email'});


    }
  });
  };

  // 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>
  <fb:login-button show-faces="true" width="200" max-rows="1"></fb:login-button>

2 个答案:

答案 0 :(得分:1)

我遇到了同样的问题。从fb帐户取消对该应用的授权。然后通过测试页再次授权应用

我发现第一次授权应用后,它没有点击下面的块。 (添加范围:一旦应用程序被授权,将电子邮件发送到FB.login并不好......我认为)

} else if (response.status === 'not_authorized') {

  FB.login(function(response) {},{scope: 'email'});

} else {

  FB.login(function(response) {}, {scope: 'email'});

}

希望有所帮助

答案 1 :(得分:0)

如果您已成功登录,则呼叫response.email将返回用户的电子邮件地址。