如何从返回 302 而不是 200 的 http post 获取 cookie (android)

发布于 2024-11-09 04:03:00 字数 313 浏览 0 评论 0原文

我正在使用一个返回 302 而不是 200 的登录页面,并且我无法使用“((DefaultHttpClient) httpclient).getCookieStore()”获取所有 cookie

在 Objective-c 中我能够解决这个问题w/ 以下

返回302时是否可以获取这些cookie?

I'm working with a login page that returns a 302 instead of 200 and I'm not able to get all the cookies using "((DefaultHttpClient) httpclient).getCookieStore()"

In objective-c I was able to work around this w/ the following

Is it possible to get these cookies when a 302 is returned?

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

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

发布评论

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

评论(1

酷炫老祖宗 2024-11-16 04:03:00

您可能可以使用 getHeaders 方法(请参阅 http://developer.android.com/reference/org/apache/http/HttpMessage.html#getHeaders%28java.lang.String%29) 在 返回 HttpResponse通过 execute 方法访问所有 Set-Cookie 响应标头。这些应该包含您想要的所有 cookie。

You can probably use the getHeaders method (see http://developer.android.com/reference/org/apache/http/HttpMessage.html#getHeaders%28java.lang.String%29) on the HttpResponse returned by the execute method to access all Set-Cookie response headers. Those should contain all the cookies you want.

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