Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!

Idiom #174 Make HTTP POST request

Make a HTTP request with method POST to the URL u

uses fphttpclient;
with TFPHTTPClient.Create(nil) do
begin
 Post(u);
 Free;
end;
using System.Net.Http;
new HttpClient().PostAsync(u, content);

New implementation...
< >
programming-idioms.org