4

我有一个带有 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>
4

7 回答 7

25

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

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

于 2015-11-16T08:59:20.750 回答
4

即使您认为自己有,您也可能没有电子邮件许可。

尝试,

FB.login(function(){
    FB.api('me',
    function(response){
            console.log(response.email);
    });
},{'scope':'email'});
于 2013-08-11T02:16:06.303 回答
2

用户可能在 Facebook 上有一封未经验证的电子邮件。您可以做的是让他们在 Facebook 设置中验证他们的电子邮件(Facebook 会向他们发送一封电子邮件,其中包含一个可供点击的链接),然后重试。

于 2013-12-04T16:24:34.977 回答
1

您可以检查此https://developers.facebook.com/bugs/298946933534016/以查看它实际上不是错误,由于多种原因,用户没有在 facebook 中注册电子邮件是可能的并且是正确的。例如已经从手机创建帐户或尚未验证他或她的电子邮件...

所以这是一个已知问题。如果我们无法从 fb 获得电子邮件,最好的解决方法可能是要求以表格形式提供电子邮件。

我的问题是如何重现空的电子邮件字段以测试提供的解决方案

编辑.. 这是他们在 facebook 开发者网站上所说的:

...“用户”对象( https://developers.facebook.com/docs/reference/api/user/ )的“电子邮件”字段的文档 阐明了此处的预期行为,即:“此字段将如果没有可用的有效电子邮件地址,则不会被退回”。

在许多情况下,您可能认为用户应该返回电子邮件地址,但他们不会。出于隐私和安全原因,无法详细说明任何特定用户的电子邮件地址不会被退回的确切原因,因此请不要询问。一些可能的原因:

帐户上没有电子邮件地址;帐户上没有确认的电子邮件地址;帐户上没有经过验证的电子邮件地址;用户输入了一个安全检查点,要求他们重新确认他们的电子邮件地址,但他们还没有这样做;用户的电子邮件地址无法访问。

您还需要“电子邮件”扩展权限,即使对于拥有有效、已确认、可访问的电子邮件地址的用户也是如此……

于 2014-05-26T13:48:40.497 回答
0

如果问题在特定电子邮件帐户中仍然存在。解决方案是:您必须要求人们使用他们的 facebook 电子邮件 id 登录当我与我的个人帐户连接时,我的问题是未定义的电子邮件然后尝试了很多事情,最终使用我的 facebook 电子邮件 id 登录。它工作

定义了用户名的 facebook 帐户导致登录您的应用程序出现问题

于 2015-07-01T10:57:22.283 回答
0
    <html>
    <head></head>
    <div id="fb-root"></div>
    <script>
    window.fbAsyncInit = function() {
    FB.init({
        appId      : 'xxxxxxxxxxxxx',
        status     : true,
        cookie     : true, 
        xfbml      : true  
    });

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

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

    (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() {
        FB.api('/me?fields=name,email', function(response) {
        console.log(response.name + '---'+response.email);
        });
    }
    </script>

    <fb:login-button show-faces="true" width="200" max-rows="1"     scope="public_profile,email"></fb:login-button>

    </body>
    </html>

参考:使用 facebook api 获取未定义的用户电子邮件

于 2018-09-24T07:29:24.117 回答
0

电子邮件有问题。如果用户电子邮件未通过验证,则将显示未定义,如果电子邮件已通过验证,则将显示已登录的电子邮件。请尝试登录并尝试打印名称,我已经通过这种方式解决了我的问题.. 检查 Hugo 提到的这个链接。它真的很有帮助。 https://developers.facebook.com/bugs/298946933534016/

于 2017-04-24T11:42:13.900 回答