我需要从服务器下载一些文件,并且需要通过https进行获取。我已经加载了所有证书,但是当我尝试从服务器获取数据时,出现此错误:
TlsException:身份验证或解密失败。
这是我现在的代码:
WebClient client = new WebClientWithTimeout();
ServicePointManager.ServerCertificateValidationCallback +=(sender,certificate, chain, sslPolicyErrors) => true;
client.DownloadFile(new Uri(url), pathFile);
我尝试使用WebClient类和HttpRequest。有解决方案吗?
谢谢