码迷,mamicode.com
首页 > Windows程序 > 详细

[HTTPS] - 请求API失败(Could not create SSL/TLS secure channel)之解决

时间:2018-07-18 11:50:35      阅读:359      评论:0      收藏:0      [点我收藏+]

标签:解决   res   param   ring   net   int   point   str   back   

背景

在单元测试中请求 HTTPS API 失败。

异常

Result StackTrace: 

at System.Web.Services.Protocols.WebClientProtocol.GetWebResponse(WebRequest request)
at System.Web.Services.Protocols.HttpWebClientProtocol.GetWebResponse(WebRequest request)
at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)

Result Message:

System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.

解决

在请求前设置安全协议如下:

ServicePointManager.Expect100Continue = true;
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
// Use SecurityProtocolType.Ssl3 if needed for compatibility reasons

参考资料

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

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