[HTTPS] - 请求API失败(Could not create SSL/TLS secure channel)之解决
2021-03-28 17:26
标签:解决 res param ring net int point str back 背景 在单元测试中请求 HTTPS API 失败。 异常 Result StackTrace: at System.Web.Services.Protocols.WebClientProtocol.GetWebResponse(WebRequest request) Result Message: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel. 解决 在请求前设置安全协议如下: 参考资料 https://stackoverflow.com/a/2904963 [HTTPS] - 请求API失败(Could not create SSL/TLS secure channel)之解决 标签:解决 res param ring net int point str back 原文地址:https://www.cnblogs.com/jinzesudawei/p/9328211.html
at System.Web.Services.Protocols.HttpWebClientProtocol.GetWebResponse(WebRequest request)
at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)ServicePointManager.Expect100Continue = true;
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
// Use SecurityProtocolType.Ssl3 if needed for compatibility reasons
上一篇:C#全栈开发之后台验证(一)
文章标题:[HTTPS] - 请求API失败(Could not create SSL/TLS secure channel)之解决
文章链接:http://soscw.com/index.php/essay/69145.html