我想使用 OpenID(PHP 和 LightOpenID)来获取以下用户信息:
$openid->required = array(
'namePerson',
'namePerson/first',
'namePerson/last',
'contact/email',
'person/guid',
'birthDate/birthYear',
'birthDate/birthMonth',
'birthDate/birthday',
'gender',
);
但是,我发现 Yahoo 和 Google 都只返回以下数据:
Array ( [namePerson] => abc [contact/email] => abc@example.com )
我的代码有问题吗?我可以强制谷歌和雅虎返回我想要的所有数据吗?