使用openid和python获取电子邮件

时间:2011-02-16 15:17:05

标签: python email authentication openid

我正在尝试使用下面的表单和web.py从OpenId请求中获取电子邮件地址。我得到一个OpenId哈希,但是在我的apache环境中我没有看到任何与电子邮件相关的内容 - 只是一个openid_identity_hash。

这是我使用web.py的html表单。

<input type="text" name="openid" value="" style="background: url(http://openid.net/login-bg.gif) no-repeat; padding-left: 18px; background-position: 0 50%%;" />
<input type="hidden" name="return_to" value="${returnUrl}" />
<input type="hidden" name="openid.ns.ext1" value="http://openid.net/srv/ax/1.0" />
<input type="hidden" name="openid.ext1.mode" value="fetch_request" />
<input type="hidden" name="openid.ext1.type.email" value="http://axschema.org/contact/email" />
<input type="hidden" name="openid.ext1.required" value="email" />

查看从Google开发网站链接到OpenID的文档,我发现这些属性包括在内,我觉得我正在做。

openid.ns.ax=http://openid.net/srv/ax/1.0
openid.ax.mode=fetch_request
openid.ax.type.fname=http://example.com/schema/fullname
openid.ax.type.gender=http://example.com/schema/gender
openid.ax.type.fav_dog=http://example.com/schema/favourite_dog
openid.ax.type.fav_movie=http://example.com/schema/favourite_movie
openid.ax.count.fav_movie=3
openid.ax.required=fname,gender
openid.ax.if_available=fav_dog,fav_movie
openid.ax.update_url=http://idconsumer.com/update?transaction_id=a6b5c4

但它实际上从未要求批准电子邮件请求,我在我的环境中看不到它。 web.py不支持吗?我可以使用authkit等其他东西来查询电子邮件吗?

1 个答案:

答案 0 :(得分:0)

@voodo,尝试设置这些值。

openid.ns=http://specs.openid.net/auth/2.0&
openid.ns.alias3=http://openid.net/srv/ax/1.0&
openid.alias3.if_available=alias1,alias2,alias3&
openid.alias3.required=alias4&
openid.alias3.mode=fetch_request&
openid.alias3.type.alias1=http://schema.openid.net/namePerson&
openid.alias3.count.alias1=1&
openid.alias3.type.alias2=http://schema.openid.net/contact/email&
openid.alias3.count.alias2=1&
openid.alias3.type.alias3=http://axschema.org/namePerson&
openid.alias3.count.alias3=1&
openid.alias3.type.alias4=http://axschema.org/contact/email&
openid.alias3.count.alias4=1

即使谷歌的XRDS指定支持AX架构

,我也不确定为什么这样做有效且纯AX架构没有。