gpt4 book ai didi

facebook - 无法访问用户的电子邮件。获取 "Undefined"

转载 作者:行者123 更新时间:2023-11-30 05:26:23 24 4
gpt4 key购买 nike

我有一个带有 Facebook 登录实现的网站。我的应用程序具有用户电子邮件的权限。即使用户使用 Facebook 登录我的应用程序,我也只能检索他/她的姓名或基本信息。不是电子邮件。所以,这是我从 Facebook 开发者网站上复制的代码:

 window.fbAsyncInit = function() {
FB.init({
appId : 'xxxxxxxxxxxxxxx', // App ID
channelUrl : '//domain.org/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
});


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

if (response.status === 'connected') {

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

FB.login();
} else {

FB.login();
}
});
};

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


function testAPI() {
console.log('Welcome! Fetching your information.... ');
FB.api('/me', function(response) {
console.log('Good to see you, ' + response.email + '.');
});
}
</script>

最佳答案

您现在必须指定要获取的字段,这称为“声明字段”:

FB.api('/me', {fields: 'name,email'}, function(response) {
console.log('Good to see you, ' + response.email + '.');
});

查看更新日志以获取更多信息:https://developers.facebook.com/docs/apps/changelog#v2_4

关于facebook - 无法访问用户的电子邮件。获取 "Undefined",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18166089/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com