Unity Web Request mTLS 1.2 - send client certificate

Hello all,

Is there a way to send the client certificate in an UnityWebRequest? Anything similar with HttpWebRequest.ClientCertificates = X509Certificate2Collection ?

When I try connecting to my server I got HTTP 400 no SSL certificate was sent.

Thanks!

Bump

No, UnityWebRequest does not have support for client certificates.

I also receive NotImplementedException when trying to use HttpClientHandler.ClientCertificates. Is there any supported API for client certificates?

Do we have any insight on whether this is something that Unity plans to support in the near future?

I would also like to know if there are any plans to support this.

for what it’s worth i was able to pull this off using System.Net.WebRequest and System.Net.Http.WebRequestHandler. I had to add a link to System.Net.Http.WebRequest.dll in the csc.rsp file to bring in the dll, but I was able to pull of client auth.