我正在尝试使用以下代码读取 c# 中 https url 的 html 源代码:
WebClient webClient = new WebClient();
string htmlString = w.DownloadString("https://www.targetUrl.com");
这对我不起作用,因为我得到了编码的 html 字符串。我尝试使用 HtmlAgilityPack 但没有帮助。
HtmlAgilityPack.HtmlDocument doc = new HtmlAgilityPack.HtmlDocument();
doc.LoadHtml(htmlString);