使用 Python 获取有关 XRI OpenID 的简短人类可读信息?

发布于 2024-07-26 08:01:53 字数 378 浏览 12 评论 0原文

我希望能够告诉带有 OpenID 的网站访问者:您是第一次在我的网站上使用您的 XYZ ID - 请创建您的场景名称,其中 XYZ 是一个有意义的好令牌。 例如 - XYZ 可以是提供商名称。

我想找到一个适用于标准中定义的 OpenID 的解决方案 - 即适用于 XRI 类型的 ID - 可扩展资源标识符。

urlparse(按照 RichieHindle 的建议)适用于 url 类型的 openid,但一般不起作用,例如,对于像“=somename”这样的 i-name ID。 还有许多其他形式的有效 OpenID 字符串,它们甚至看起来都不像 url。

谢谢。

I'd like to be able to tell to the site visitor that comes with his/her OpenID: you are using your XYZ id for the first time on mysite - please create your sceen name, where XYZ is a nice token that makes sense. For example - XYZ could be the provider name.

I'd like to find a solution that works for OpenID as defined in the standard - i.e. work for XRI type of ID - extensible resource identifier.

urlparse (as suggested by RichieHindle) works for url-type openid, but does not work in general, e.g. for i-name IDs like "=somename". There are many other forms of valid OpenID string that don't even closely look like url.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

寂寞笑我太脆弱 2024-08-02 08:01:53

由于 OpenID 是 URL,因此在 Janrain 缺乏内置支持的情况下,这可能是最简洁的方法:

from urlparse import urlparse
openid_str = "http://myprovider/myname" # str(openid_obj)
parts = urlparse(openid_str)
provider_name = parts[1]
print (provider_name)  # Prints myprovider

Since OpenIDs are URLs, this might be the cleanest way in the absence of built-in support in Janrain:

from urlparse import urlparse
openid_str = "http://myprovider/myname" # str(openid_obj)
parts = urlparse(openid_str)
provider_name = parts[1]
print (provider_name)  # Prints myprovider
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文