Internet Protocol
Unreal Engine Plugin

HTTP Client Openssl

How to use HTTP client class with openssl

References

#include "http/httpclient.h"

How to use

Blueprint: search by GetInternetProtocolSubsystem and call CreateHttpClientSsl function

C++: Use the code bellow

#include "http/httpclient.h"

FSecurityContextOpts SecOpts = { ... };
UHttpClientSsl* client = NewObject<UHttpClientSsl>();
client->Construct(SecOpts);

Functions

This class has the same functions from HttpClient