HTTPRequest

A node with the ability to send HTTP(S) requests.

A node with the ability to send HTTP requests. Uses HTTPClient internally. Can be used to make HTTP requests, i.e. download or upload files or web content via HTTP. Warning: See the notes and warnings on HTTPClient for limitations, especially regarding SSL security. Example of contacting a REST API and printing one of its returned fields:

More...
@GodotBaseClass
struct HTTPRequest {}

Members

Aliases

BaseClasses
alias BaseClasses = AliasSeq!(typeof(_GODOT_base), typeof(_GODOT_base).BaseClasses)
Undocumented in source.

Enums

Constants
enum Constants
Result
enum Result

Functions

_redirectRequest
void _redirectRequest(String arg0)
_requestDone
void _requestDone(long arg0, long arg1, PoolStringArray arg2, PoolByteArray arg3)
_timeout
void _timeout()
cancelRequest
void cancelRequest()

Cancels the current request.

getBodySize
long getBodySize()

Returns the response body length. Note: Some Web servers may not send a body length. In this case, the value returned will be -1. If using chunked transfer encoding, the body length will also be -1.

getBodySizeLimit
long getBodySizeLimit()
getDownloadChunkSize
long getDownloadChunkSize()
getDownloadFile
String getDownloadFile()
getDownloadedBytes
long getDownloadedBytes()

Returns the amount of bytes this HTTPRequest downloaded.

getHttpClientStatus
HTTPClient.Status getHttpClientStatus()

Returns the current status of the underlying HTTPClient. See HTTPClient.status.

getMaxRedirects
long getMaxRedirects()
getTimeout
long getTimeout()
isUsingThreads
bool isUsingThreads()
opAssign
typeof(null) opAssign(typeof(null) n)
opEquals
bool opEquals(HTTPRequest other)
opEquals
bool opEquals(typeof(null) n)
request
GodotError request(String url, PoolStringArray custom_headers, bool ssl_validate_domain, long method, String request_data)

Creates request on the underlying HTTPClient. If there is no configuration errors, it tries to connect using HTTPClient.connectToHost and passes parameters onto HTTPClient.request. Returns constant OK if request is successfully created. (Does not imply that the server has responded), constant ERR_UNCONFIGURED if not in the tree, constant ERR_BUSY if still processing previous request, constant ERR_INVALID_PARAMETER if given string is not a valid URL format, or constant ERR_CANT_CONNECT if not using thread and the HTTPClient cannot connect to host. Note: The request_data parameter is ignored if method is constant HTTPClient.METHOD_GET. This is because GET methods can't contain request data. As a workaround, you can pass request data as a query string in the URL. See String.httpEscape for an example.

setBodySizeLimit
void setBodySizeLimit(long bytes)
setDownloadChunkSize
void setDownloadChunkSize(long arg0)
setDownloadFile
void setDownloadFile(String path)
setMaxRedirects
void setMaxRedirects(long amount)
setTimeout
void setTimeout(long timeout)
setUseThreads
void setUseThreads(bool enable)
toHash
size_t toHash()

Mixins

__anonymous
mixin baseCasts
Undocumented in source.

Properties

bodySizeLimit
long bodySizeLimit [@property getter]
long bodySizeLimit [@property setter]

Maximum allowed size for response bodies.

downloadChunkSize
long downloadChunkSize [@property getter]
long downloadChunkSize [@property setter]

The size of the buffer used and maximum bytes to read per iteration. See HTTPClient.readChunkSize. Set this to a lower value (e.g. 4096 for 4 KiB) when downloading small files to decrease memory usage at the cost of download speeds.

downloadFile
String downloadFile [@property getter]
String downloadFile [@property setter]

The file to download into. Will output any received file into it.

maxRedirects
long maxRedirects [@property getter]
long maxRedirects [@property setter]

Maximum number of allowed redirects.

timeout
long timeout [@property getter]
long timeout [@property setter]
useThreads
bool useThreads [@property getter]
bool useThreads [@property setter]

If true, multithreading is used to improve performance.

Static functions

_new
HTTPRequest _new()

Construct a new instance of HTTPRequest. Note: use memnew!HTTPRequest instead.

Static variables

_classBindingInitialized
bool _classBindingInitialized;
Undocumented in source.

Structs

GDNativeClassBinding
struct GDNativeClassBinding
Undocumented in source.

Unions

__anonymous
union __anonymous
Undocumented in source.

Variables

_GODOT_internal_name
enum string _GODOT_internal_name;
Undocumented in source.

Mixed In Members

From mixin baseCasts

as
inout(To) as()
Undocumented in source. Be warned that the author may not have intended to support it.
as
inout(To) as()
Undocumented in source. Be warned that the author may not have intended to support it.
as
inout(ToRef) as()
Undocumented in source. Be warned that the author may not have intended to support it.
opCast
template opCast(To)
Undocumented in source.
opCast
template opCast(To)
Undocumented in source.
opCast
template opCast(ToRef)
Undocumented in source.
opCast
void* opCast()
Undocumented in source. Be warned that the author may not have intended to support it.
opCast
godot_object opCast()
Undocumented in source. Be warned that the author may not have intended to support it.
opCast
bool opCast()
Undocumented in source. Be warned that the author may not have intended to support it.

Detailed Description

func _ready(): # Create an HTTP request node and connect its completion signal. var http_request = HTTPRequest.new() add_child(http_request) http_request.connect("request_completed", self, "_http_request_completed")

# Perform a GET request. The URL below returns JSON as of writing. var error = http_request.request("https://httpbin.org/get") if error != OK: push_error("An error occurred in the HTTP request.")

# Perform a POST request. The URL below returns JSON as of writing. # Note: Don't make simultaneous requests using a single HTTPRequest node. # The snippet below is provided for reference only. var body = {"name": "Godette"} error = http_request.request("https://httpbin.org/post", [], true, HTTPClient.METHOD_POST, body) if error != OK: push_error("An error occurred in the HTTP request.")

# Called when the HTTP request is completed. func _http_request_completed(result, response_code, headers, body): var response = parse_json(body.get_string_from_utf8())

# Will print the user agent string used by the HTTPRequest node (as recognized by httpbin.org). print(response.headers"User-Agent")

Example of loading and displaying an image using HTTPRequest:

func _ready(): # Create an HTTP request node and connect its completion signal. var http_request = HTTPRequest.new() add_child(http_request) http_request.connect("request_completed", self, "_http_request_completed")

# Perform the HTTP request. The URL below returns a PNG image as of writing. var error = http_request.request("https://via.placeholder.com/512") if error != OK: push_error("An error occurred in the HTTP request.")

# Called when the HTTP request is completed. func _http_request_completed(result, response_code, headers, body): var image = Image.new() var error = image.load_png_from_buffer(body) if error != OK: push_error("Couldn't load the image.")

var texture = ImageTexture.new() texture.create_from_image(image)

# Display the image in a TextureRect node. var texture_rect = TextureRect.new() add_child(texture_rect) texture_rect.texture = texture

Meta