Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
4.2k views
in Technique[技术] by (71.8m points)

iis - Call API from .NETCOre3.1 returns The SSL connection could not be established

I am trying to call an web page with SSL certificate as you can see below :

 public string GetToken()
    {



            using (var httpClientHandler = new HttpClientHandler())
            {
                httpClientHandler.ServerCertificateCustomValidationCallback = (message, cert, chain, errors) => { return true; };
                httpClientHandler.SslProtocols = System.Security.Authentication.SslProtocols.Tls;

                using (var httpClient = new HttpClient(httpClientHandler))
                {

                    HttpResponseMessage response = httpClient.GetAsync("https://pgsb.iran.gov.ir").Result;

                    return "ok";

                }
            }

    }

When I call my controller in .NETCore 3.1 I get this error.

enter image description here

When I call the website using POSTMAN success response returned But when I call the website using .NETCORE hosted by IIS I get the above error .

As a detail I want to add when I call the website using Angular I get this error in console windows :

no 'access-control-allow-origin' header is present on the requested resource.

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...