调用第三方的数据上传接口,使用http一切正常,然而使用https报错“请求被中止: 未能创建 SSL/TLS 安全通道。”
然而,使用微信小程序连接该域名其他接口是正常了,说明该服务器是支持https的。因为考虑到之前做小程序开发时让后台升级过tsl到1.2,所以想,这次是不是也是因为tsl版本支持的问题呢?文章源自IT老刘-https://wp.itlao6.com/955.html
到myssl.com提交域名进行校验,果然,该域名只支持tsl1.2,不支持1.0与1.1。文章源自IT老刘-https://wp.itlao6.com/955.html
既然知道原因了,那么就可以尽心修改,在代码中加入,tsl1.2支持:文章源自IT老刘-https://wp.itlao6.com/955.html
ServicePointManager.SecurityProtocol = SecurityProtocolType.Ssl3
| SecurityProtocolType.Tls
| (SecurityProtocolType)0x300 //Tls11
| (SecurityProtocolType)0xC00; //Tls12
重新生成运行,一切正常。文章源自IT老刘-https://wp.itlao6.com/955.html
需要注意的是,因为使用的tsl1.2,所以运行的服务器需要安装.net4.5,至于开发框架则4.0就够了。文章源自IT老刘-https://wp.itlao6.com/955.html
简书:ThinkinLiu 博客: IT老五文章源自IT老刘-https://wp.itlao6.com/955.html
相关文章:HTTP POST请求json数据量过大的问题文章源自IT老刘-https://wp.itlao6.com/955.html 文章源自IT老刘-https://wp.itlao6.com/955.html
我的微信公众号
微信扫一扫关注公众号,不定时更新
评论