C# htmlagility 包,捕获重定向
大家好,这真的很简单(我希望)。我正在使用 htmlagility pack 进行网络爬虫。那么,如果我输入 url,然后将我定向到新的 url,会发生什么情况,如何捕获该新的重定向 URL?
如果 htmlagility pack 没有办法,有人可以建议另一种方法吗?
HI all, this one is really simple (I hope). I'm using htmlagility pack to do my webcrawling. So what happens if I input url whatever, that then directs me to a new url, how do I capture that new redirected URL?
If htmlagility pack doesnt have a way, can someone suggest another method?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 Html Agility Pack 附带的 HtmlWeb 类,您可以在实际执行之前调整请求,如下所示:
Using the HtmlWeb class that comes with the Html Agility Pack, you can tweak the request before it's actually executed, like this:
创建 HttpWebRequest 时,您可以将
AllowAutoRedirect
属性设置为 true,它将自动遵循您拥有的任何重定向。您可以在 msdn 找到更多信息
When you create your HttpWebRequest you can set
AllowAutoRedirect
property to true and it will automatically follow any redirects you have.you can find more info at msdn