gpt4 book ai didi

c# - 如何在 HtmlAgilityPack 中使用代理

转载 作者:行者123 更新时间:2023-11-30 20:27:16 25 4
gpt4 key购买 nike

我需要使用 HtmlAgilityPack 的代理。我提供了指向我的应用程序 RefURL 的链接。之后我希望应用程序从代理地址获取 url。例如“101.109.44.157:8080”

我搜索并发现了这个:

WebClient wc = new WebClient();
wc.Proxy = new WebProxy(host,port);
var page = wc.DownloadString(url);

并像这样使用它。

RefURL = new Uri(refLink.Text);

WebClient wc = new WebClient();
wc.Proxy = new WebProxy("101.109.44.157:8080");
var page = wc.DownloadString(RefURL);

RefURL.ToString();
HtmlWeb web = new HtmlWeb();
HtmlAgilityPack.HtmlDocument doc = web.Load(RefURL.ToString());

但它不起作用!

最佳答案

代理 IP 没有响应,但您也没有在此代码行中传递 Web 代理:

HtmlAgilityPack.HtmlDocument doc = web.Load(RefURL.ToString());

应该是:

HtmlAgilityPack.HtmlDocument doc = web.Load(RefURL.ToString(),"GET", webProxy);

第一步是找到“新代理IP”列表,例如:

这些地址中的大多数可以工作几个小时。查看how to set proxy IP in a browser .如果代理是匿名的,this page应该无法检测到您的位置和 IP。

一旦您拥有可用的代理 IP 和端口,您就可以创建 webProxy 对象或简单地传递 IP 和端口。

string RefURL = "https://www.whatismyip.com/";
string myProxyIP = "119.81.197.124"; //check this is still available
int myPort = 3128;
string userId = string.Empty; //leave it blank
string password = string.Empty;
try
{
HtmlWeb web = new HtmlWeb();
var doc = web.Load(RefURL.ToString(), myProxyIP, myPort, userId, password);
Console.WriteLine(doc.DocumentNode.InnerHtml);
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}

关于c# - 如何在 HtmlAgilityPack 中使用代理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48851890/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com