Logo

Programming-Idioms

  • Pascal
  • Js

Idiom #174 Make HTTP POST request

Make a HTTP request with method POST to the URL u

fetch(u, {
        method: "POST",
	body: JSON.stringify(data)
})
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