我正在使用LightOpenID,我正在尝试获取此gmail身份验证的属性,但它似乎没有返回我的个人帐户上的任何内容,我没有得到任何错误。我是OpenID的新手,希望有人能帮助我以前做过这件事。
我在validate()
上指定字段并使用process()
我正在使用OpenID网址:https://www.google.com/accounts/o8/id
public function show () {
if ($this->site->tru->post->isRequest() || !$this->site->tru->get->isEmpty('openid_mode')) {
require_once $this->site->tru->config->get('root.path').'/lib/php/openid.php';
$this->lightOpenId = new LightOpenID;
if ($this->validate() || $this->lightOpenId->validate()) {
$this->process();
}
}
$this->site->addCss('account/login.css');
$this->site->addJs('account/login.js');
echo $this->site->tru->display->getTemplate('/site/account/login.tpl');
}
public function process () {
if ($this->lightOpenId->validate()) {
echo '<pre>'.print_r($this->lightOpenId).'
'.print_r($this->lightOpenId->getAttributes()).'</pre>';
}
}
public function validate () {
if (!$this->site->tru->post->isEmpty('openid_url')) {
$this->lightOpenId->identity = $this->site->tru->post->get('openid_url');
$this->lightOpenId->optional = array('contact/email', 'namePerson', 'contact/postalCode/home', 'contact/country/home');
header('Location: '.$this->lightOpenId->authUrl());
}
return count($this->error) == 0;
}
答案 0 :(得分:2)
$openid->identity = 'https://www.google.com/accounts/o8/';
// use the following line to obtain the required details. These are the only details that google mail provides. This is for lightopenid.
$openid->required = array('namePerson/friendly', 'contact/email' , 'contact/country/home', 'namePerson/first', 'pref/language', 'namePerson/last');
header('Location: ' . $openid->authUrl());
答案 1 :(得分:1)
Google只回答所需的参数,完全忽略了可选参数。
此外,它只能返回以下属性:
contact/country/home
contact/email
namePerson/first
namePerson/last
pref/language
因此namePerson
和contact/postalCode/home
无效。
以上信息仅适用于Google,与LightOpenID本身完全无关。
至于库,我建议不要两次调用$ lightOpenId-&gt; validate()。每次调用它时,它都会向提供者发送可能拒绝第二个请求的请求。