如何检查 302 响应?网络请求
使用 WebRequest
我想知道我是否得到了
“302暂时移动”
响应而不是自动获取新的 url。
Using WebRequest
I want to know if I get a
"302 Moved Temporarily"
response instead of automatically get the new url.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您想检测重定向响应,请不要跟随它自动创建
WebRequest
并将AllowAutoRedirect
属性设置为false
:If you want to detect a redirect response, instead of following it automatically create the
WebRequest
and set theAllowAutoRedirect
property tofalse
:像这样:
代码应该是
Like so:
The code should be
VB网络代码
VB Net Code