summaryrefslogtreecommitdiffstats
path: root/doc/classes/HTTPClient.xml
diff options
context:
space:
mode:
authorPaul Joannon <437025+paulloz@users.noreply.github.com>2021-03-18 12:04:28 +0100
committerPaul Joannon <hello@pauljoannon.com>2021-03-19 13:21:20 +0100
commit8455e901f39c90d581aeb8913640219fb8754e77 (patch)
tree9b4c919e2b8b2637ca7b914f74aaea73e198fa75 /doc/classes/HTTPClient.xml
parent3b380f4cdcfd54ebb1f4b32654618502571a43df (diff)
downloadredot-engine-8455e901f39c90d581aeb8913640219fb8754e77.tar.gz
class reference proofreading
Diffstat (limited to 'doc/classes/HTTPClient.xml')
-rw-r--r--doc/classes/HTTPClient.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/HTTPClient.xml b/doc/classes/HTTPClient.xml
index 9ff682f79d..ddfcdf7724 100644
--- a/doc/classes/HTTPClient.xml
+++ b/doc/classes/HTTPClient.xml
@@ -4,7 +4,7 @@
Low-level hyper-text transfer protocol client.
</brief_description>
<description>
- Hyper-text transfer protocol client (sometimes called "User Agent"). Used to make HTTP requests to download web content, upload files and other data or to communicate with various services, among other use cases. [b]See the [HTTPRequest] node for an higher-level alternative.[/b]
+ Hyper-text transfer protocol client (sometimes called "User Agent"). Used to make HTTP requests to download web content, upload files and other data or to communicate with various services, among other use cases. [b]See the [HTTPRequest] node for a higher-level alternative.[/b]
[b]Note:[/b] This client only needs to connect to a host once (see [method connect_to_host]) to send multiple requests. Because of this, methods that take URLs usually take just the part after the host instead of the full URL, as the client is already connected to a host. See [method request] for a full example and to get started.
A [HTTPClient] should be reused between multiple requests or to connect to different hosts instead of creating one client per request. Supports SSL and SSL server certificate verification. HTTP status codes in the 2xx range indicate success, 3xx redirection (i.e. "try again, but over here"), 4xx something was wrong with the request, and 5xx something went wrong on the server's side.
For more information on HTTP, see https://developer.mozilla.org/en-US/docs/Web/HTTP (or read RFC 2616 to get it straight from the source: https://tools.ietf.org/html/rfc2616).