So, I am using HttpModule to initialize my request and set different parameters to it. Like this : TSharedRef<IHttpRequest, ESPMode::ThreadSafe> HttpRequest = FHttpModule::Get().CreateRequest();
HttpRequest->SetVerb(“GET”);
Now with this HttpRequest, I want to add SSL pinning using the public key. So when the request is going to do handshake with the client, it should there itself validate the request.
I searched a lot but did not find anything. OpenSSL code is too hard to understand and I tried this : ISslCertificateManager to bind with FHttpModule but it did not work.
Can anybody help here.