李昊 4 år sedan
förälder
incheckning
3b2762e115

+ 2 - 15
GxPress/Api/GxPress.Api/Startup.cs

@@ -1,4 +1,3 @@
-using System;
 using System.Net.Http;
 using GxPress.Api.ServiceExtensions;
 using GxPress.Common.AppOptions;
@@ -21,7 +20,6 @@ namespace GxPress.Api
     public class Startup
     {
         public IConfiguration Configuration { get; }
-        private IWebHostEnvironment currentEnvironment { get; set; }
         public Startup(IConfiguration configuration)
         {
             Configuration = configuration;
@@ -45,17 +43,7 @@ namespace GxPress.Api
             {
                 options.JsonSerializerOptions.PropertyNamingPolicy = null;
             }).SetCompatibilityVersion(CompatibilityVersion.Version_3_0);
-            services.AddHttpClient("yowkoblog", c => { c.BaseAddress = new Uri("https://lx.gxcbcmjt.com/"); })
-                       .ConfigurePrimaryHttpMessageHandler(h =>
-                       {
-                           var handler = new HttpClientHandler();
-                           if (currentEnvironment.IsDevelopment())
-                           {
-                    //handler.ServerCertificateCustomValidationCallback = delegate { return true; };
-                    handler.ServerCertificateCustomValidationCallback = HttpClientHandler.DangerousAcceptAnyServerCertificateValidator;
-                           }
-                           return handler;
-                       });
+
             //文件上传限制60MB
             services.Configure<FormOptions>(options =>
             {
@@ -118,14 +106,13 @@ namespace GxPress.Api
         // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
         public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
         {
-            currentEnvironment=env;
             var handler = new HttpClientHandler();
             if (env.IsDevelopment())
             {
                 handler.ServerCertificateCustomValidationCallback = delegate { return true; };
                 app.UseDeveloperExceptionPage();
             }
-
+          
             //最上层的自定义异常处理中间件
             app.UseMiddleware<ExceptionMiddleware>();
             app.UseRouting();

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

@@ -655,9 +655,9 @@ 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(); //http对象
+                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 }));