CURL 和会话 ID

发布于 2024-11-26 20:06:33 字数 283 浏览 0 评论 0原文

站点 A 应该使用站点 B 的身份验证。在站点 AI 中,添加了带有curl 的 post 请求的 login.php 到站点 B。此外,在站点 AI 中,还向该 login.php 添加了 jquery Ajax 请求。如果没有错误,我将用户重定向到站点 B(在 javascript 中)。一切都很好,除了重定向后用户未经过身份验证,因为没有任何会话 cookie。所以我的想法是从login.php 的curl 请求中读取会话ID,并使用该会话ID 添加一个cookie。我想这会解决我的问题。 所以问题是 - 如何从curl读取会话ID? 谢谢

There is site A that should use site's B authentication. At site A I added login.php with curl's post request to site B. Also at site A I have jquery Ajax request to that login.php. If there are no errors I redirecting the user to site B (in javascript). Everything fine except of fact that after redirection the user is not authenticated because there is no any session cookie. So my idea is to read session Id from curl request at login.php and add a cookie with that session Id. I think it will solve my problem.
So the question is - how to read session Id from curl?
Thank you

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

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

发布评论

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

评论(1

东京女 2024-12-03 20:06:33

如果您将用户重定向到另一个域,则无法设置用户浏览器将发送到其他域的 cookie。如果您拥有这两个网站,则需要实施 跨域 cookie (有几种方法可以做到这一点,基本上涉及从站点 B 加载站点 A 上的某些元素,然后使用 JS 将 cookie 数据从一个域复制到另一个域)。

您无法强制用户向其他站点执行 POST 请求,或者告诉他要发送哪些 HTTP 标头。您无法为域 B 设置 cookie - 您可以为 A 设置它们,并且 B 最终可以读取它们,如果您设置 跨域 cookie

If you are redirecting the user to another domain, you cannot set the cookies which the user's browser will send to the other domain. If you own both of the sites, you need to implement cross-domain cookie (there are few ways to do this, basically involving loading some element on site A from site B, and then with JS copying the cookie data from one domain to another).

There is no way you can force user to perform a POST request to the other site, or to tell him what HTTP headers to send. There is no way you can set cookies for domain B - you can set them for A, and B can eventually read them, if you setup cross-domain cookie

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