phpMyID配置问题
我已按照自述文件中的说明进行操作,一切似乎都正常,但是当我尝试使用自己的域地址作为 stackoverflow 的 OpenID 时,我收到以下错误消息:
无法使用您的 OpenID 提供商登录:
发送直接消息或获取响应时发生错误。
关于可能出什么问题有什么想法吗?
更新:所以我尝试自己解决问题,现在没有收到任何错误。然而,发生的情况是,我从 stackoverflow 页面转到我的域名页面,再也没有返回。
I have followed the instructions on the read me file and everything seems to be working but when I try to use my own domain address as my OpenID for stackoverflow, I get this error message:
Unable to log in with your OpenID provider:
Error occurred while sending a direct message or getting the response.
Any ideas on what might be wrong?
UPDATE: So I tried to solve the problem on my own and I am not getting any errors now. What happens, however, is that I go from the stackoverflow page to my domain name page and never return.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
phpMyID 是一个 OpenId 1.0 提供程序,stackoverflow 似乎有某种问题。您的解决方案是登录两次,它会起作用(我已经检查过它是否有效,并且问题不限于phpMyID)。
您可能想测试我使用 OpenID 2.0 的新提供程序库,以避免这种情况问题。
您询问是否可以使用
sebkom.me
作为 openid url - 确实如此。对于 phpMyID,添加:
对于我的库,只需在任何输出之前调用
$op->server();
(请参阅example.php
)。如果您决定测试我的库,请直接向我询问任何问题。phpMyID is an OpenId 1.0 provider, and stackoverflow seems to have some kind of problem with it. Your solution would be to login twice, and it will work (I've checked that it works, and the problem isn't limited to phpMyID).
You might want to test my new provider library that uses OpenID 2.0, avoiding this problem.
You have asked if it's possible to use
sebkom.me
as the openid url -- it is.For phpMyID, add:
For my library just invoke
$op->server();
before any output (seeexample.php
). If you decide to test my library, just ask me directly with any questions.