无法使用facebook api检索电子邮件

时间:2010-10-10 22:41:28

标签: api facebook

我试图在我的网站上进行用户身份验证后通过Facebook检索用户电子邮件。

我在下面运行查询,但电子邮件和生日字段为空;它们对我网站上的注册非常重要。

#*** run fql ***
   $fql    =   "select uid, first_name, last_name, name, sex, email, current_location, website, interests, birthday, pic_big from user where uid=me()";
   $param  =   array('method' => 'fql.query', 'query' => $fql, 'callback' => '');
   $user   =   $facebook->api($param);print_r($user);

我该怎么办

1 个答案:

答案 0 :(得分:2)

要访问电子邮件和生日等字段,您需要在授权期间请求额外的权限。完整的权限列表可用here