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.
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.