获取Facebook的用户电子邮件
问题描述:
我有一个Facebook应用程序,我试图让用户的电子邮件,但我得到获取Facebook的用户电子邮件
Uncaught OAuthException: Unknown path components: /email
上使用下面的代码:
$email= idx($facebook->api('me/email'),'data',array());
function idx(array $array, $key, $default = null) {
return array_key_exists($key, $array) ? $array[$key] : $default;
}
我在做什么错误?
答
就是这样我通常使用:
$user_profile = $fb->api('/me');
$email=$user_profile['email'];
所以基本上你可以做到这一点:
$email=idx($facebook->api('/me'),'email',array());
笑,是我不好。谢谢 – 2013-05-08 14:05:49