Corrigindo o erro HTTP/1.1 403 Forbiddden na utilização do componente Indy IdHTTP com Delphi
Para corrigir o erro basta utilizar o seguinte código:
procedure TForm1.Button1Click(Sender: TObject); var HTML : string; begin IdHTTP1 := TIdHTTP.Create(nil); IdHTTP1.Request.Accept := 'text/html, */*'; IdHTTP1.Request.UserAgent := 'Mozilla/3.0 (compatible; IndyLibrary)'; IdHTTP1.Request.ContentType := 'application/x-www-form-urlencoded'; IdHTTP1.HandleRedirects := True; HTML := IdHTTP1.Get('https://portalclique.com'); Memo1.Text := (HTML); end;