李昊 4 anos atrás
pai
commit
20334a21fc

+ 4 - 8
GxPress/Infrastructure/GxPress.Common/Http/HttpClientHelper.cs

@@ -20,8 +20,7 @@ namespace GxPress.Common.Http
         /// <returns></returns>
         public static async Task<HttpResponseMessage> GetHeadersAsync(string url, Dictionary<string, string> headers)
         {
-            var httpClientHandler = new HttpClientHandler { ServerCertificateCustomValidationCallback = HttpClientHandler.DangerousAcceptAnyServerCertificateValidator };
-            HttpClient httpClient = new HttpClient(httpClientHandler); //http对象
+            HttpClient httpClient = new HttpClient(); //http对象
             //添加header
             foreach (var header in headers)
             {
@@ -37,8 +36,7 @@ namespace GxPress.Common.Http
         /// <returns></returns>
         public static async Task<byte[]> GetByteArrayAsync(string url)
         {
-            var httpClientHandler = new HttpClientHandler { ServerCertificateCustomValidationCallback = HttpClientHandler.DangerousAcceptAnyServerCertificateValidator };
-            HttpClient httpClient = new HttpClient(httpClientHandler); //http对象
+            HttpClient httpClient = new HttpClient(); //http对象
             var response = await httpClient.GetByteArrayAsync(url);
             return response;
         }
@@ -53,8 +51,7 @@ namespace GxPress.Common.Http
         public static async Task<HttpResponseMessage> PostAsync(string url, object jsonObj,
             Dictionary<string, string> headers = null)
         {
-            var httpClientHandler = new HttpClientHandler { ServerCertificateCustomValidationCallback = HttpClientHandler.DangerousAcceptAnyServerCertificateValidator };
-            HttpClient httpClient = new HttpClient(httpClientHandler); //http对象
+            HttpClient httpClient = new HttpClient(); //http对象
             if (headers != null)
                 foreach (var header in headers)
                 {
@@ -73,8 +70,7 @@ namespace GxPress.Common.Http
         /// <returns></returns>
         public static async Task<HttpResponseMessage> DeleteAsync(string url, Dictionary<string, string> headers = null)
         {
-            var httpClientHandler = new HttpClientHandler { ServerCertificateCustomValidationCallback = HttpClientHandler.DangerousAcceptAnyServerCertificateValidator };
-            HttpClient httpClient = new HttpClient(httpClientHandler); //http对象
+            HttpClient httpClient = new HttpClient(); //http对象
             if (headers != null)
                 foreach (var header in headers)
                 {

+ 0 - 22
GxPress/Repository/GxPress.Repository.Implement/UserRepository.cs

@@ -656,22 +656,7 @@ namespace GxPress.Repository.Implement
             try
             {
                 var imServiceUrl = ConfigHelper.GetValue("ServiceAddress:ImUrl");
-                // var httpClientHandler = new HttpClientHandler { ServerCertificateCustomValidationCallback = HttpClientHandler.DangerousAcceptAnyServerCertificateValidator };
-                // var httpClientHandler = new HttpClientHandler
-                // {
-                //     ServerCertificateCustomValidationCallback = (message, certificate2, arg3, arg4) => true
-                // };
-                // HttpClientHandler clientHandler = new HttpClientHandler();
-                // clientHandler.ServerCertificateCustomValidationCallback = (sender, cert, chain, sslPolicyErrors) => { return true; };
-                // HttpClient httpClient = new HttpClient(clientHandler); //http对象
-                // HttpResponseMessage response = await httpClient.PostAsync(
-                //     $"{imServiceUrl}/users",
-                //     new JsonContent(new { username = request.Phone, password = "123456", nickname = request.Name }));
-
                 string result = HttpClientHelper.GetResponseData("{\"username\":\"" + request.Phone + "\", \"password\": \"123456\",\"nickname\":\"" + request.Name + "\"}", $"{imServiceUrl}/users");
-                // if (response.IsSuccessStatusCode)
-                // {
-                //string result = await response.Content.ReadAsStringAsync();
                 if (!string.IsNullOrEmpty(result))
                 {
                     _logger.LogDebug(result);
@@ -684,14 +669,7 @@ namespace GxPress.Repository.Implement
                     var userEntity = await GetByPhoneAsync(request.Phone);
                     userEntity.ImId = request.Phone;
                     await _repository.UpdateAsync(userEntity);
-                    Thread.Sleep(1000);
                 }
-                // }
-                // else
-                // {
-                //     //出现请求环信失败
-                //     // throw new BusinessException("创建用户失败");
-                // }
             }
             catch (Exception e)
             {