我试图在我的网站上进行用户身份验证后通过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);
我该怎么办