PHP OpenID 中 AX 的使用示例
我正在使用 JanRain 的 PHP OpenID 库。 它附带使用 SReg 扩展的示例脚本。 但我希望它能够与 Google 一起使用(实际上它适用于身份验证),但 Google 使用 AX(属性交换)而不是 SReg 来获取附加数据。 由于某种原因,JanRain 的库在示例脚本中缺少 AX 支持,并且 AX 脚本中的代码注释超出了我的理解,尽管 SReg 脚本中的注释很清楚,如 1-2-3。
有谁知道如何在没有太多痛苦的情况下实施 AX?
I'm using JanRain's PHP OpenID library. It comes with example script which is using SReg extension. But I want it to work with Google (and it works for auth actually), but Google uses AX (attribute exchange) instead of SReg for additional data. For some reason, JanRain's library is missing AX support in example script, and code comments in AX script are out of my understanding, though comments in SReg script are clear as 1-2-3.
Does anyone know how to implement AX without too much pain?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
遇到了同样的问题。 对 AX.php 的一些挖掘让我有了一个工作的开始。 没有寻找任何错误,也没有进行超出基本范围的测试,也没有与 Google 以外的任何人进行测试。 这不太漂亮:需要错误处理等。但这应该可以帮助您入门。 如果我有一些强大的东西,我会发布更新...
首先抛出...
...然后抓住
这些应该是基础知识...
Ran into the same issue. Some digging in AX.php got me a working start. Haven't looked for any bugs, nor tested beyond basic, nor tested with anyone other than Google. This is not pretty: needs error handling, etc. But this should get you started. Will post an update if I have something robust...
First to throw ...
... and then to catch
Those ought to be the basics...
请求的一半正在工作,但是我在捕获中失败了。
上面的行应该
是
否则,响应对象从哪里来?
我在响应中没有返回 openid.current_url 来检查 URL?
The request half is working, however I am getting failure in the Catch.
Should the line above
be
Otherwise, where does the response object come from?
I am not getting returned the openid.current_url in my response to check the url with?