请求被中止: 未能创建 SSL/TLS 安全通道,以及解决方法。

在创建请求地址的前面加了这句代码就可以了:

System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;


private string LoadURLString(string url, Encoding ed, string GetPost)

        {

            System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;

            HttpWebRequest request1 = (HttpWebRequest)WebRequest.Create(url);

            request1.Method = GetPost;

            request1.ContentType = "application/json";

            request1.Accept = "application/json";

            return new StreamReader(((HttpWebResponse)request1.GetResponse()).GetResponseStream(), ed).ReadToEnd();

        }

你可能感兴趣的:(请求被中止: 未能创建 SSL/TLS 安全通道,以及解决方法。)