尽管进行了设置,Apache HttpComponents 仍不遵循重定向请求

发布于 2024-10-19 06:15:44 字数 311 浏览 1 评论 0原文

我正在向 MultipartEntity 的 Web 服务器执行 POST 来上传文件。 Apache HttpComponents 版本 4.1。

我得到的响应是 302 重定向。如果我使用抛出 ClientProtocolException 的 BasicResponseHandler。 (BasicResponseHandler 的 JavaDoc 说客户端可能遵循重定向,这是相当模糊的!)

文档让我相信客户端会自动遵循重定向并返回该响应。我在客户端参数中明确设置 HANDLE_REDIRECTS true 。

我在这里缺少什么?

I'm doing a POST to a web server of a MultipartEntity to upload a file. Apache HttpComponents version 4.1.

The response I get is a 302 redirect. If I use a BasicResponseHandler that throws a ClientProtocolException. (The JavaDoc for BasicResponseHandler says that client may follow a redirect, which is pretty vague!)

The docs led me to believe that the client would automatically follow a redirect and return that response. I explicitly set HANDLE_REDIRECTS true in the client parameters.

What am I missing here?

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

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

发布评论

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

评论(2

扶醉桌前 2024-10-26 06:15:44

某些请求类型(主要是包含 POST 和 PUT 等实体的请求)的重定向可能不会按照 HTTP 规范的要求自动执行。您可以使用自定义 RedirectStrategy 覆盖 HttpClient 的默认行为。

Redirects of some request types (mainly entity enclosing ones such as POST and PUT) MAY NOT be executed automatically per requirements of the HTTP specification. You can override the default behaviour of HttpClient by using a custom RedirectStrategy.

入画浅相思 2024-10-26 06:15:44

可能与此处的问题相同: URLConnection 不遵循重定向 。它仅遵循相同的协议,并且不会从 HTTP 重定向到 HTTPS(或不同协议的其他组合)。

May be it's the same issue as here: URLConnection Doesn't Follow Redirect . It follows only the same protocol, and doesn't redirect from HTTP to HTTPS (or some other combination of different protocols).

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