使用System.Net.WebRequest.Create(url)抓取某网站信息时 ,出现“未能创建 SSL/TLS 安全通道”此条异常信息
解决方案
引用:using System.Net;
在请求之前插入TLS安全协议:System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
如图:
赞
踩
使用System.Net.WebRequest.Create(url)抓取某网站信息时 ,出现“未能创建 SSL/TLS 安全通道”此条异常信息
解决方案
引用:using System.Net;
在请求之前插入TLS安全协议:System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
如图:
转载于:https://www.cnblogs.com/eimers/p/10277683.html
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。