I need to add a client certificate to my web requests and tried to achieve it in this way: Stackoverflow
At the end of this answer the "FlurlClient way" is presented. Using and configuring a FlurlClient instead of a global FlurlHttp configuration. I've tried this, but it didn't work.
I've created a new .NET Core Console application to show you the problem:
static void Main(string[] args)
{
   /****** NOT WORKING *******/
   try
   {
      IFlurlClient fc1 = new FlurlClient(url)
         .ConfigureClient(c => c.HttpClientFactory = new X509HttpFactory(GetCert()));
      fc1.WithHeader("User-Agent", userAgent)
         .WithHeader("Accept-Language", locale);
      dynamic ret1 = fc1.Url.AppendPathSegments(pathSegments).GetJsonAsync()
         .GetAwaiter().GetResult();
   }
   catch
   {
      // --> Exception: 403 FORBIDDEN
   }
   /****** NOT WORKING *******/
   try
   {
      IFlurlClient fc2 = new FlurlClient(url);
      fc2.Settings.HttpClientFactory = new X509HttpFactory(GetCert());
      fc2.WithHeader("User-Agent", userAgent)
         .WithHeader("Accept-Language", locale);
      dynamic ret2 = fc2.Url.AppendPathSegments(pathSegments).GetJsonAsync()
         .GetAwaiter().GetResult();
   }
   catch
   {
      // --> Exception: 403 FORBIDDEN
   }
   /****** WORKING *******/
   FlurlHttp.Configure(c =>
   {
      c.HttpClientFactory = new X509HttpFactory(GetCert());
   });
   dynamic ret = url.AppendPathSegments(pathSegments).GetJsonAsync()
      .GetAwaiter().GetResult();
   // --> OK
}
The X509HttpFactory is copied from the linked StackOverflow answer (but using HttpClientHandler instead of WebRequestHandler):
public class X509HttpFactory : DefaultHttpClientFactory
{
   private readonly X509Certificate2 _cert;
   public X509HttpFactory(X509Certificate2 cert)
   {
      _cert = cert;
   }
   public override HttpMessageHandler CreateMessageHandler()
   {
      var handler = new HttpClientHandler();
      handler.ClientCertificates.Add(_cert);
      return handler;
   }
}
So using the global FlurlHttp configuration is working and configuring the FlurlClient is not working. Why?