我想用的OpenID(PHP和LightOpenID)得到以下的用户信息:
$openid->required = array(
'namePerson',
'namePerson/first',
'namePerson/last',
'contact/email',
'person/guid',
'birthDate/birthYear',
'birthDate/birthMonth',
'birthDate/birthday',
'gender',
);
然而,我发现,雅虎和谷歌都仅返回以下数据:
Array ( [namePerson] => abc [contact/email] => abc@example.com )
是不是有什么错我的代码? 我可以强制谷歌和雅虎返回所有我想要的数据?