赞
踩
用最少的代码解决 HTTPS 报告 SSL 的 bug
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls11;
SecurityProtocolType.Tls11 可以根据实际情况换成别的版本协议
//Trust all certificates
System.Net.ServicePointManager.ServerCertificateValidationCallback =
((sender, certificate, chain, sslPolicyErrors) => true);
解决问题,但会涉及客户端安全性问题。最好还是使用SSL证书
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。