李昊 4 years ago
parent
commit
02258aab34

+ 14 - 1
GxPress/Api/GxPress.Api/Startup.cs

@@ -1,3 +1,4 @@
+using System;
 using System.Net.Http;
 using GxPress.Api.ServiceExtensions;
 using GxPress.Common.AppOptions;
@@ -20,6 +21,7 @@ namespace GxPress.Api
     public class Startup
     {
         public IConfiguration Configuration { get; }
+        private IWebHostEnvironment currentEnvironment { get; set; }
         public Startup(IConfiguration configuration)
         {
             Configuration = configuration;
@@ -43,7 +45,17 @@ 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 =>
             {
@@ -106,6 +118,7 @@ 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())
             {

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

@@ -26,7 +26,6 @@ using GxPress.Result.App.User;
 using GxPress.Result.Job;
 using GxPress.Common.Http;
 using System.Net;
-using System.Security.Authentication;
 
 namespace GxPress.Repository.Implement
 {
@@ -656,13 +655,9 @@ namespace GxPress.Repository.Implement
                 // {
                 //     ServerCertificateCustomValidationCallback = (message, certificate2, arg3, arg4) => true
                 // };
-                // 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对象
+                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 }));