即使在“www.google.com”的 SetCredentials 之后,IWinHttpRequest 也会失败,状态代码为 407。

发布于 2024-08-21 11:34:25 字数 170 浏览 5 评论 0原文

我的系统浏览器 (IE) 经过代理验证。我尝试使用下载“www.google.com” 即使使用 SetCredentials(...) 为“www.google.com”设置用户名和密码后,IWinHttpRequest 也会失败,状态代码为 407(需要代理身份验证)。响应文本包含“缓存访问被拒绝”。怎么解决这个问题呢?

My system Browser (IE) is proxy authenticated. I tried to download "www.google.com" using
IWinHttpRequest it fails with status code 407 ( Need Proxy Authentication ) even after setting the user name and password using SetCredentials(...) for "www.google.com". The response text contains "cache access denied". How to solve this?

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

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

发布评论

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

评论(1

醉殇 2024-08-28 11:34:25

应按如下方式调用 SetCredentials 两次

hr = pIWinHttpRequest->SetCredentials(bstrUserName, bstrPassword, HTTPREQUEST_SETCREDENTIALS_FOR_SERVER);
hr = pIWinHttpRequest->SetCredentials(bstrUserName, bstrPassword, HTTPREQUEST_SETCREDENTIALS_FOR_PROXY);

在调用“发送”之前,

SetCredentials should be called twice as follows

hr = pIWinHttpRequest->SetCredentials(bstrUserName, bstrPassword, HTTPREQUEST_SETCREDENTIALS_FOR_SERVER);
hr = pIWinHttpRequest->SetCredentials(bstrUserName, bstrPassword, HTTPREQUEST_SETCREDENTIALS_FOR_PROXY);

before called "Send"

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