当前位置:  开发笔记 > 编程语言 > 正文

在.NET中使用httpWebRequest时"尝试了太多自动重定向"错误消息

如何解决《在.NET中使用httpWebRequest时"尝试了太多自动重定向"错误消息》经验,为你挑选了2个好方法。

我正在尝试使用vb.net中的webrequest类请求" http://www.google.com/?q=random " 这样的页面.我们在防火墙后面,所以我们必须验证我们的请求.我通过添加我的凭据已经通过了身份验证部分.但是一旦它起作用,它似乎进入了一个重定向循环.

有没有人有想法,评论,建议为什么这是?还有其他人遇到过这个问题吗?

Dim loHttp As HttpWebRequest =  CType(WebRequest.Create(_url), HttpWebRequest)
loHttp.Timeout = 10000
loHttp.Method = "GET"
loHttp.KeepAlive = True
loHttp.AllowAutoRedirect = True
loHttp.PreAuthenticate = True
Dim _cred1 As NetworkCredential = ... //this is setup
//snip out this stuff
loHttp.Credentials = _cc
loWebResponse = loHttp.GetResponse()

Darryl Braat.. 43

确保您有一个cookie容器设置.

CookieContainer cookieContainer = new CookieContainer();
loHttp.CookieContainer = cookieContainer;

您可能没有保存cookie并陷入重定向循环.



1> Darryl Braat..:

确保您有一个cookie容器设置.

CookieContainer cookieContainer = new CookieContainer();
loHttp.CookieContainer = cookieContainer;

您可能没有保存cookie并陷入重定向循环.



2> 小智..:
loHttp.AllowAutoRedirect = true

而不是这个,你必须使用

loHttp.AllowAutoRedirect = False

避免错误错误

"太多的自动重定向被瞄准"

推荐阅读
云聪京初瑞子_617
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有