验证 Google OpenID 响应

发布于 2024-12-14 09:01:24 字数 259 浏览 0 评论 0原文

我正在尝试在我的网站中实施 Google OpenID,但服务器有一些限制,因此我无法使用 file_get_contents()。

因此,我无法使用许多可用的库。

我应该如何验证 Google 的响应?

我还没有让它工作:如何验证 google openid 响应

I'm trying to implement Google OpenID into my site, but the server has several restrictions so I can not use file_get_contents().

For that reason I'm unable to use many of the libraries available.

How should I go about verifying Google's response?

I haven't gotten this to work: how to verify google openid response

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

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

发布评论

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

评论(1

墨洒年华 2024-12-21 09:01:24

我希望服务器限制确实会阻止您访问远程 URL。如果是这样,则无法验证 OpenID 响应,因为第三方授权系统的全部目的是验证来自第三方的用户身份。无论如何,您必须能够与第三方交谈。

许多 PHP 函数使您能够获取远程内容,fopen('http(s)://') 是一回事,curl 函数是另一回事,甚至 system ('curl')system('wget')。你需要先让这个工作起来。

I hope that the server restrictions does prevent you from access remote URL all together. If so, then it would be impossible to verify the OpenID response as the whole point of a third-party authorization system is to verify user identity from a third-party. You have to be able to talk to the third party anyway.

Many PHP functions enables you to fetch remote content, fopen('http(s)://') is one thing, curl functions is another, even system('curl') or system('wget'). You need to get this working first.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文