When using TIdHttp, for example:
Memo1.Text := IdHTTP1.post(url,data);
I can get the content response in memo1 if it does not give an HTTP error. But when he gives an http request, Indy doesn't give me the content. I also use try..except, but it only prevents the error and still does not give me the content.
How can I get content even if it returns an HTTP error?
source share