码迷,mamicode.com
首页 > Web开发 > 详细

Invoke-WebRequest : 请求被中止: 未能创建 SSL/TLS 安全通道。

时间:2019-06-23 21:10:21      阅读:467      评论:0      收藏:0      [点我收藏+]

标签:通道   prot   完全   span   service   服务   安全   epo   解决   

运行invoke-webrequest报错:

  技术图片

  根据你的 PowerShell、.NET Framework 的版本和升级,WEB 连接的缺省安全协议可能仍然是 SSL3。

您可以方便地查明它:

  技术图片

[Net.ServicePointManager]::SecurityProtocol

  返回的协议不包含 Tls12,那么可能无法用 PowerShell 连接到安全的 Web Service 和网站。

我们只需要这样操作就可以启用更多的服务:

  技术图片

[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Ssl3 -bor [Net.SecurityProtocolType]::Tls -bor [Net.SecurityProtocolType]::Tls11 -bor [Net.SecurityProtocolType]::Tls12
[Net.ServicePointManager]::SecurityProtocol

至此问题已经完全解决

  技术图片

 

Invoke-WebRequest : 请求被中止: 未能创建 SSL/TLS 安全通道。

标签:通道   prot   完全   span   service   服务   安全   epo   解决   

原文地址:https://www.cnblogs.com/feiyucha/p/11073931.html

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