Static method to perform a simple HTTP GET request
Source position: fphttpclient.pp line 287
public class procedure TFPCustomHTTPClient.SimpleGet( |
const AURL: string; |
Stream: TStream |
); |
const AURL: string; |
const LocalFileName: string |
); |
const AURL: string; |
Response: TStrings |
); |
const AURL: string |
AURL |
|
The URL to retrieve |
Stream |
|
Stream to write the response content to |
AURL |
|
The URL to retrieve |
LocalFileName |
|
Local filename to save the response to |
AURL |
|
The URL to retrieve |
Response |
|
Variable to store the response content as string |
AURL |
|
The URL to retrieve |
The response content as string
Static utility method for performing a simple HTTP GET request without requiring an HTTP client instance. This is convenient for quick one-off requests.
May raise HTTP-related exceptions on connection errors.
|
Performs an HTTP GET request |