本文主要是介绍HttpWebRequest访问https请求被中止: 未能创建 SSL/TLS 安全通道,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
编写代码,使用HttpWebRequest访问网页,错误提示:
未能创建 SSL/TLS 安全通道
页面本来是Http网址,突然转换为https网址,所以遇到这个问题也算正常。将解决方法记录下来给需要的人。
//只需要在 HttpWebRequest 发送请求前加入下面的代码
ServicePointManager.ServerCertificateValidationCallback += (s, cert, chain, sslPolicyErrors) => true;
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls;//.Net 4.0版本使用下面代码
ServicePointManager.ServerCertificateValidationCallback += (s, cert, chain, sslPolicyErrors) => true;
ServicePointManager.SecurityProtocol = (SecurityProtocolType)192 | (SecurityProtocolType)768 | (SecurityProtocolType)3072;
参考网址:https://www.cnblogs.com/fogwang/p/14462711.html
这篇关于HttpWebRequest访问https请求被中止: 未能创建 SSL/TLS 安全通道的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!