如何防止 ServerXMLHTTP 自动跟随重定向(HTTP 303 查看其他响应)?

发布于 2024-07-05 20:01:55 字数 166 浏览 9 评论 0原文

我正在使用 ServerXMLHTTP 执行 HTTP POST。 返回的响应是重定向(特别是 303 See Other)。 ServerXMLHTTP 自动遵循此重定向,但这会导致身份验证失败,因为不会传播原始请求的授权标头。

有没有办法可以阻止自动重定向(或者确保重新发送授权标头)?

I am using ServerXMLHTTP to perform an HTTP POST. The response returned is a redirect (specifically 303 See Other). ServerXMLHTTP is automatically following this redirect but this is causing an authentication failure as is not propagating the Authorization header of the original request.

Is there a way I can prevent the automatic redirection (or alternatively ensure that the Authorization header is resent)?

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

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

发布评论

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

评论(1

等数载,海棠开 2024-07-12 20:01:56

ServerXMLHTTP 不支持拦截重定向(请参阅 Microsoft 知识库文章 308607 )。 不过,可以使用 WinHTTP 来代替它,并且它确实包含一个可配置的“启用重定向”选项。

如何在 VBA 中禁用 WinHTTP 重定向:

webClient.Option(6) = False

在上下文中:

Set webClient = CreateObject("WinHttp.WinHttpRequest.5.1")
webClient.Option(6) = False 
webClient.Open "POST", "http://example.com", False
webClient.send ("")

ServerXMLHTTP does not support interception of redirects (see Microsoft Knowledge Base Article 308607). However WinHTTP can be used in its place and this does contain a configurable 'enable redirects' option.

How to disable WinHTTP redirects in VBA:

webClient.Option(6) = False

In context:

Set webClient = CreateObject("WinHttp.WinHttpRequest.5.1")
webClient.Option(6) = False 
webClient.Open "POST", "http://example.com", False
webClient.send ("")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文