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

.Net Core访问https接口报错:The requested security protocol is not supported

时间:2020-07-03 15:35:36      阅读:420      评论:0      收藏:0      [点我收藏+]

标签:tps   class   pve   bre   cep   support   ida   ice   div   

需要在设置协议类型前需要先设置协议版本信息,如下:

HttpWebRequestreq = (HttpWebRequest)HttpWebRequest.Create(url);

ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(CheckValidationResult);
//设置协议类型前设置协议版本
req.ProtocolVersion
= HttpVersion.Version11; //这里设置了协议类型。 ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12; ServicePointManager.CheckCertificateRevocationList = true; ServicePointManager.DefaultConnectionLimit = 1000; ServicePointManager.Expect100Continue = false;

 

.Net Core访问https接口报错:The requested security protocol is not supported

标签:tps   class   pve   bre   cep   support   ida   ice   div   

原文地址:https://www.cnblogs.com/Jackie-sky/p/13230541.html

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