我正在尝试制作基于“AngleSharp”的解析器。
我使用以下代码进行下载:
var itemsAttr = document.QuerySelectorAll("img[id='print_user_photo']");
string foto_url = itemsAttr[0].GetAttribute("src");
string path = pathFolderIMG + id_source + ".jpg";
WebClient webClient = new WebClient();
webClient.DownloadFile(foto_url, path);
对于页面“type_1” -链接- 代码有效。
对于页面“type_2” -链接- 代码不起作用。
如何下载“type_2”页面的照片?