Here is a way to do an HTTP post using Indy, in one line, more or less:
Response := FIdHttp.Post(URL, StringStream);
Is there a function out there (function, not library) that allows the equivalent to be done using WinInet?
Preferably, a function that resembles this:
function PostUsingWinInet(const URL, Data :string; SSL :boolean) :string;
I do not want to reinvent the wheel and write my own wrapper function if one already exists.
Thanks!