我有一个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>
答案 0 :(得分:22)
您现在必须指定要获取的字段,称为“声明字段”:
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
答案 1 :(得分:4)
即使您认为自己这样做,也可能没有电子邮件许可。
尝试,
FB.login(function(){
FB.api('me',
function(response){
console.log(response.email);
});
},{'scope':'email'});
答案 2 :(得分:2)
用户可能在Facebook上有未经验证的电子邮件。您可以做的是要求他们在Facebook设置上验证他们的电子邮件(Facebook会向他们发送一封包含点击链接的电子邮件),然后再试一次。
答案 3 :(得分:1)
您可以查看此https://developers.facebook.com/bugs/298946933534016/以确定它实际上不是错误,只是可能并且更正用户由于多种原因没有在Facebook注册的电子邮件。例如,已经从手机创建了帐户,或者没有验证他或她的电子邮件......
所以这是一个已知问题。如果我们无法从fb中获取电子邮件,最好的解决方法可能是在表格中要求发送电子邮件。
我的问题是如何重现空电子邮件字段以测试提供的解决方案
编辑..这就是他们在facebook开发者网站上所说的话:
...'user'对象的'email'字段的文档( https://developers.facebook.com/docs/reference/api/user/)澄清 这里的预期行为,是:“这个领域不会 如果没有有效的电子邮件地址,则返回“。
在许多情况下,您可能会认为用户 应该有一个电子邮件地址返回,但他们不会。为了隐私 和安全的原因,无法详细说明 因为任何特定用户的电子邮件地址都不会被退回 请不要问。一些可能的原因:
帐户没有电子邮件地址;帐户中未确认电子邮件地址;没有 已验证的电子邮件地址;用户输入了安全检查点 这要求他们重新确认他们的电子邮件地址,但他们没有 但是这样做了;用户的电子邮件地址无法访问。
您还需要“电子邮件”扩展权限,即使对于拥有该权限的用户也是如此 已存档的有效,已确认,可访问的电子邮件地址......
答案 4 :(得分:0)
如果特定电子邮件帐户中的问题仍然存在。 解决方案是:您必须要求人们使用他们的Facebook电子邮件ID登录 当我连接我的个人帐户时,我的问题是未定义的电子邮件 然后尝试了很多东西 终于登录了我的Facebook电子邮件ID。它工作了
已定义用户名的facebook帐户会导致问题导致您的应用
答案 5 :(得分:0)
电子邮件有问题。如果未验证用户电子邮件,则会显示未定义的电子邮件,如果电子邮件已经过充分验证,则会显示已登录的电子邮件。请尝试登录并尝试打印名称,我已经用这种方式解决了我的问题.. 查看Hugo提到的这个链接。它真的很有帮助。 https://developers.facebook.com/bugs/298946933534016/
答案 6 :(得分: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>