我将以下代码行添加到Application_Start()
,希望它可以解决错误Could not create SSL/TLS secure channel
。但这仍然不能解决我的问题。
ServicePointManager.ServerCertificateValidationCallback += (sender, certificate, chain, sslPolicyErrors) => true;
// stacktrace
System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult)
at System.Net.Http.HttpClientHandler.GetResponseCallback(IAsyncResult ar)
奇怪的是,如果我通过Postman通过Https发起请求,没有任何问题。我得到200,API调用在那里正常工作。
我在这里还缺少什么吗?还是我可以尝试的其他东西?