LightOpenID - 如何从存储的会话中检索电子邮件?

发布于 2024-12-04 10:10:43 字数 652 浏览 1 评论 0原文

我将 $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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

战皆罪 2024-12-11 10:10:43

您必须将电子邮件存储在会话中。 LightOpenID 不存储任何内容。您必须重做整个身份验证才能仅从身份中检索电子邮件地址。

所以,类似这样的事情:

if($openid->validate()) {
    $attributes = $openid->getAttributes();
    $this->session->set_userdata('open_id', $openid->identity);
    $this->session->set_userdata('email', $attributes['email']);
}

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:

if($openid->validate()) {
    $attributes = $openid->getAttributes();
    $this->session->set_userdata('open_id', $openid->identity);
    $this->session->set_userdata('email', $attributes['email']);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文