gpt4 book ai didi

facebook - 如何使用 javascript sdk 获取 Facebook 用户的电子邮件 ID

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

我正在使用 JavaScript API 为 Facebook 创建我的应用程序。问题是,它正在返回
电子邮件 = 未定义

不知道为什么?如果我在我的应用程序上使用 Facebook 登录/注销按钮,则警报会显示正确的用户电子邮件 ID,但我不想这样做。我错过了什么?

这是我的代码:

<p><fb:login-button autologoutlink="true" perms="user_about_me,email"></fb:login-button></p>

<script>
window.fbAsyncInit = function () {
FB.init({ appId: '250180631699888', status: true, cookie: true,
xfbml: true
});

FB.getLoginStatus(function (response) {
if (response.session) {
greet();
}
});
};
(function () {
var e = document.createElement('script');
e.type = 'text/javascript';
e.src = document.location.protocol +
'//connect.facebook.net/en_US/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
} ());

function greet() {
FB.api('/me', function (response) {
alert('Welcome, ' + response.name + "!");
alert('Your email id is : '+ response.email);
});
}
</script>

最佳答案

// https://developers.facebook.com/docs/javascript/reference/FB.api/
// v2.4

FB.api('/me', { locale: 'en_US', fields: 'name, email' },
function(response) {
console.log(response.email);
}
);

关于facebook - 如何使用 javascript sdk 获取 Facebook 用户的电子邮件 ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7820485/

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