-1

可能重复:
如何获取 Facebook 好友的电子邮件?

在我的应用程序中,我必须检索用户的朋友电子邮件地址。我尝试了以下代码,但我没有得到朋友的电子邮件地址。

我的代码:

<div id="fb-root"></div> 
            <script> 
            window.fbAsyncInit = function() {
                FB.init({
                  appId  : 'xxxxxxxxxxxxxxx',
                  status : true, // check login status
                  cookie : true, // enable cookies to allow the server to access the session
                  xfbml  : true,  // parse XFBML
          oauth  :true
                });

  function login(){


        /* Show User's Name*/ 


        FB.api('/me/friends', function(response) {
            alert("user name:"+response.name);
            alert("user mailid:"+response.email);
           // document.getElementById('login').style.display = "block";
           // document.getElementById('login').innerHTML = response.name + " succsessfully logged in!";
        });


    //window.location="http://google.com"; // Redirect to Another Page.

    }

但是在警报中没有显示邮件ID。我搜索了这个,我发现电子邮件不是公共财产,所以我可以做些什么来检索邮件ID。

4

2 回答 2

2

据我所知,朋友的电子邮件地址无法访问。

谢谢考希克

于 2012-10-18T05:10:06.980 回答
1

首先初始化 FB Javascript SDK 如下。

<div id="fb-root"></div>
<script>
  window.fbAsyncInit = function() {
    // init the FB JS SDK
    FB.init({
      appId      : 'YOUR_APP_ID', // App ID from the App Dashboard
      channelUrl : '//WWW.YOUR_DOMAIN.COM/channel.html', // Channel File for x-domain communication
      status     : true, // check the login status upon init?
      cookie     : true, // set sessions cookies to allow your server to access the session?
      xfbml      : true  // parse XFBML tags on this page?
    });

    // Additional initialization code such as adding Event Listeners goes here

  };

  // Load the SDK's source 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 SDK。现在在 JavaScript 中编写以下函数。有关详细信息,请参阅此文档

function initiateFB Login()
{
 FB.login(function(response) {
   if (response.authResponse) 
   {
     //Login Success if you want you can initiate request for friend list here only.
     FB.api('/me/friends/fields=id,username', function(resp)
     {
       /// Process the resp over here. This resp will be JSON response of friend request
     }
     );
   }
   else 
   {
     console.log('User cancelled login or did not fully authorize.');
   }
 });

}

您可以获得用户名,即 FB 用户名。以下是对此的要求。

me/friends?fields=id,username

此请求将为您提供以下格式的 JSON 响应。

{
  "data": [
    {
      "id": "FB_ID", 
      "username": "FB_USER_NAME"
    }, 
    {
      "id": "FB_ID", 
      "username": "FB_USER_NAME"
    }
]
}

您可以解析它并获取用户名。

希望这可以帮助。

谢谢

考希克

于 2012-10-18T06:48:28.857 回答