HttpWebRequest.AllowAutoRedirect 内容处置问题
如果将 HttpWebRequest
的 AllowAutoRedirect
设置为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在我看来就像是一个损坏的网络应用程序。无论如何,我会通过手动执行重定向来解决这个问题,而不是由 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.