李昊 4 anni fa
parent
commit
c3b3f00840

+ 2 - 2
GxPress/Repository/GxPress.Repository.Implement/UserRepository.cs

@@ -649,8 +649,8 @@ namespace GxPress.Repository.Implement
             try
             {
                 var imServiceUrl = ConfigHelper.GetValue("ServiceAddress:ImUrl");
-                var httpClientHandler = new HttpClientHandler { ServerCertificateCustomValidationCallback = HttpClientHandler.DangerousAcceptAnyServerCertificateValidator };
-                HttpClient httpClient = new HttpClient(httpClientHandler); //http对象
+                // var httpClientHandler = new HttpClientHandler { ServerCertificateCustomValidationCallback = HttpClientHandler.DangerousAcceptAnyServerCertificateValidator };
+                HttpClient httpClient = new HttpClient(); //http对象
                 HttpResponseMessage response = await httpClient.PostAsync(
                     $"{imServiceUrl}/users",
                     new JsonContent(new { username = request.Phone, password = "123456", nickname = request.Name }));