码迷,mamicode.com
首页 > Web开发 > 详细

https request报错 ServicePointManager.SecurityProtocol 搞定

时间:2019-11-19 14:01:24      阅读:419      评论:0      收藏:0      [点我收藏+]

标签:反馈   无法   http   信息   未能   代码   ssl   protoc   col   

  突然被同事反馈无法正常发送对应信息,赶紧差错!

发现request请求API接口均报 请求被中止: 未能创建 SSL/TLS 安全通道 非常奇怪,

于是查询环境Framework版本4.0 升级至4.8 故障依旧

查询代码发现需要设置一下ServicePointManager.SecurityProtocol这个类下面的几个枚举属性如下

public enum SecurityProtocolType
{
Ssl3 = 48,
Tls = 192,
Tls11 = 768,
Tls12 = 3072,
}

于是设置  ServicePointManager.SecurityProtocol = (SecurityProtocolType)192 | (SecurityProtocolType)768 | (SecurityProtocolType)3072;

再次发送问题解决!

https request报错 ServicePointManager.SecurityProtocol 搞定

标签:反馈   无法   http   信息   未能   代码   ssl   protoc   col   

原文地址:https://www.cnblogs.com/paul010/p/11888498.html

(0)
(1)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!