李昊 4 rokov pred
rodič
commit
c49995b820

+ 8 - 3
GxPress/Repository/GxPress.Repository.Implement/UserRepository.cs

@@ -26,6 +26,7 @@ using GxPress.Result.App.User;
 using GxPress.Result.Job;
 using GxPress.Common.Http;
 using System.Net;
+using System.Security.Authentication;
 
 namespace GxPress.Repository.Implement
 {
@@ -655,9 +656,13 @@ namespace GxPress.Repository.Implement
                 // {
                 //     ServerCertificateCustomValidationCallback = (message, certificate2, arg3, arg4) => true
                 // };
-                HttpClientHandler clientHandler = new HttpClientHandler();
-                clientHandler.ServerCertificateCustomValidationCallback = (sender, cert, chain, sslPolicyErrors) => { return true; };
-                HttpClient httpClient = new HttpClient(clientHandler); //http对象
+                // HttpClientHandler clientHandler = new HttpClientHandler();
+                // clientHandler.ServerCertificateCustomValidationCallback = (sender, cert, chain, sslPolicyErrors) => { return true; };
+                var httpClientHandler = new HttpClientHandler
+                {
+                    SslProtocols = SslProtocols.Tls12
+                };
+                HttpClient httpClient = new HttpClient(httpClientHandler); //http对象
                 HttpResponseMessage response = await httpClient.PostAsync(
                     $"{imServiceUrl}/users",
                     new JsonContent(new { username = request.Phone, password = "123456", nickname = request.Name }));