我得到了#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);
});
但我仍然遇到同样的问题。我做错了什么?
由于