Is there any implementation in place for the interface IHttpRequest? Currently every method in there (except the destructor) is pure virtual, so it’s pretty much unusable. In case it helps to see how I’m using it:
if (FHttpModule::IsAvailable())
{
Http = &FHttpModule::Get();
}
// Later...
TSharedRef Request = Http->CreateRequest();
Request->SetVerb("POST");
// etc.
Of course, instead of having a shared reference to the interface I would cast a reference to the implementing class.
Thanks in advance!