Logo

Programming-Idioms

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

Idiom #101 Load from HTTP GET request into a string

Make an HTTP request with method GET to the URL u, then store the body of the response in the string s.

uses fphttpclient;
with TFPHTTPClient.Create(nil) do try
  s := get(u);
finally
  Free;
end;

using the FPC compiler and its standard library.
(def s (slurp u))

New implementation...