调用有赞API时,报如下错误:
HTTP请求错误:System.Net.WebException: 请求被中止: 未能创建 SSL/TLS 安全通道。
经过排查得知,有赞的的api仅支持TLSv1.2协议版本
我的程序使用的.NET Framework 4.0 不支持TLSv1.2协议版本
.NET Framework 4.0 Ssl3、Tls
.NET Framework 4.5 - 4.6.2 Ssl3、Tls、Tls11、Tls12
.NET Framework 4.7 Ssl3、SystemDefault、Tls、Tls11、Tls12
.NET Framework 4.8 Ssl3、SystemDefault、Tls、Tls11、Tls12、Tls13
解决方法就是,将自己的程序修改成支持Tls12的.NET Framework 4.5 之后,就不再报错了。
相关程序请求代码:
if (url.ToLower().StartsWith("https"))
{
//如果要在C#中忽略证书验证,可以设置ServicePointManager.ServerCertificateValidationCallback:
ServicePointManager.ServerCertificateValidationCallback = (sender, certificate, chain, errors) => true;
ServicePointManager.Expect100Continue = true;
ServicePointManager.SecurityProtocol = SecurityProtocolType.Ssl3
| SecurityProtocolType.Tls
| SecurityProtocolType.Tls11 //Tls11
| SecurityProtocolType.Tls12; //Tls12
}
标签:TLS,Ssl3,HTTP,请求,Framework,Tls,NET,Tls11,Tls12 From: https://www.cnblogs.com/wsk198726/p/18356862