得到"未定义"在Facebook API上发送电子邮件

时间:2017-05-26 15:37:29

标签: javascript facebook api facebook-login

我得到了#34;未定义"在尝试捕获用户的电子邮件时,从我的facebook API发送电子邮件,因此我需要声明我想要的字段,因此我做了以下更改。

旧代码:

FB.api('/me?fields=email,first_name,last_name', function(response) {      
  console.debug(response);           
  fb_register(response);  
});

新代码:

FB.api('/me', {fields: 'email,first_name,last_name'}, function(response) {      
  console.debug(response);           
  fb_register(response);  
});

但我仍然遇到同样的问题。我做错了什么?

由于

0 个答案:

没有答案