program idom101;

uses
  fphttpclient;

const
  u = 'http://w...content-available-to-author-only...s.org/';
var
  s: string;
begin
  with TFPHTTPClient.Create(nil) do try
    s := get(u);
    writeln(s);
  finally
    Free;
  end;
end.