gpt4 book ai didi

javascript - 使用 facebook API javascript 获取电子邮件

转载 作者:行者123 更新时间:2023-12-02 17:29:49 24 4
gpt4 key购买 nike

我有这个方法,我想获取一个人的电子邮件并发送电子邮件=未定义。

第一次尝试:

     function testAPI() {
FB.login(function(response) {
if (response.authResponse) {
console.log('Welcome! Fetching your information.... ');
FB.api('/me', function(response) {
console.log('Good to see you, ' + response.email + '.');
alert('Good to see you, ' + response.email + '.');
});
} else {
console.log('User cancelled login or did not fully authorize.');
}
}, {scope:'email'});

我正在搜索,我发现我必须使用 {scope:image},如果我使用它,不要向我显示警报

最佳答案

替换这个

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

有了这个

FB.api('/me?fields=id,name,email,permissions', function(response) {
console.log(response.name);
console.log(response.email);
// ...

我可以获取用户的电子邮件。

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

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