在 php/server 端,我需要获取用户的生日,这是我的代码:
$user_id = $facebook->getUser();
if ($user_id) {
// Fetch the viewer's basic information
$basic = $facebook->api('/me');
var_dump($basic);
}
'$basic' 给了我一个包含这些键的数组:id、name、first_name、last_name、link、username、gender、timezone、locale、updated_time
这就是我在我的 fb 应用程序中拥有的权限:电子邮件、user_birthday、publish_actions
现在为什么该数组中没有“生日”键???