HttpWebRequest.AllowAutoRedirect 内容处置问题

发布于 2024-10-02 12:01:45 字数 393 浏览 4 评论 0原文

如果将 HttpWebRequestAllowAutoRedirect 设置为 true,那么它会自动重定向,直到到达某些内容。例如,在 sourceforge.net 上,它重定向到镜像,然后镜像将返回响应内容。问题是,最终响应不包含任何 Content-Disposition 标头,而是之前的响应包含一个标头,它将我们重定向到最后一个开始下载的 URL。如果 AllowAutoRedirect 设置为 true 那么我们会错过文件名,如果设置为 false,我们应该手动重定向并留意 Content-Disposition代码>.有什么想法吗?

If you set AllowAutoRedirect of HttpWebRequest to true, then it automatically redirects until it reaches some content. For example on sourceforge.net it redirect to mirror and then mirror would return the content in response. Problem is, the final response doesn't contain any Content-Disposition header, instead it's prior response has one, which redirect us to the last URL where download begins. If AllowAutoRedirect is set to true then we miss the file name and if set to false, we should redirect manually and keep an eye out for Content-Disposition. Any idea ?

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

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

发布评论

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

评论(1

度的依靠╰つ 2024-10-09 12:01:45

在我看来就像是一个损坏的网络应用程序。无论如何,我会通过手动执行重定向来解决这个问题,而不是由 HWR 处理。

Seems to me like a broken webapp. Anyhow, I would work around it by doing the redirects manually, instead of being handled by HWR.

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