在我的应用程序中,我必须检索用户的朋友电子邮件地址。我尝试了以下代码,但我没有得到朋友的电子邮件地址。
我的代码:
<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。
答案 0 :(得分:2)
据我所知,朋友的电子邮件地址无法访问。
由于 考希克
答案 1 :(得分: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中编写以下函数。 有关详细信息,请参阅this document。
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"
}
]
}
您可以解析此信息并获取用户名。
希望这有帮助。
由于
考希克