LightOpenID - 如何从存储的会话中检索电子邮件?
我将 $lightopenid->identity
存储在 codeigniter 会话中,如下所示:
$lightopenid = new Lightopenid;
$lightopenid->required = array('contact/email');
if ($lightopenid->validate()) {
$google_open_id = $lightopenid->identity;
$this->session->set_userdata('google_open_id', $google_open_id);
}
在控制器的单独函数中,我想检索用户的电子邮件。
print_r($this->session->userdata('google_open_id'));
将向我显示身份链接,但如何从中检索电子邮件?
我需要一个新的 lightopenid
实例吗?
有什么建议吗?
I am storing $lightopenid->identity
in a codeigniter session as follows:
$lightopenid = new Lightopenid;
$lightopenid->required = array('contact/email');
if ($lightopenid->validate()) {
$google_open_id = $lightopenid->identity;
$this->session->set_userdata('google_open_id', $google_open_id);
}
In a separate function in my controller I would like to retrieve the user's email.
print_r($this->session->userdata('google_open_id'));
will show me the identity link but how do I retrieve the email from it?
Do I need a new instance of lightopenid
?
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须将电子邮件存储在会话中。 LightOpenID 不存储任何内容。您必须重做整个身份验证才能仅从身份中检索电子邮件地址。
所以,类似这样的事情:
You have to store the email in the session. LightOpenID doesn't store anything. You'd have to redo the whole authentication in order to retrieve the email address only from the identity.
So, something like that: