Any implementation for IHttpRequest?

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!

Hey William,

The Module will return a working version of the IHttpRequest. I’ll see if we can’t get the source for that or the other class available for a future release.

Best Regards,

Ryan