Reference API Roblox

Engine API

Website

Related

Reference API Roblox

HttpError

Enum representing errors that can occur when making HTTP requests, unrelated to HTTP status codes returned by the server.

Items 19

HistoryNameValueDescription
352OK0

No error occurred; the request completed successfully. This value is unrelated to the HTTP 200 OK status code.

352InvalidUrl1

The request URL is malformed or otherwise invalid; depending on the platform, a bad URL might instead surface as HttpError.DnsResolve or HttpError.ConnectFail.

352DnsResolve2

The hostname in the request URL could not be resolved via DNS.

352ConnectFail3

The client failed to establish a TCP connection to the remote host.

352OutOfMemory4

The client ran out of memory while processing the HTTP request or response.

352TimedOut5

The request did not receive a response within the allowed time limit.

352TooManyRedirects6

The server returned more redirects than the client is configured to follow.

352InvalidRedirect7

The server returned a redirect response with an invalid or malformed Location header.

352NetFail8

A general network-level failure occurred that does not fall into a more specific error category.

352Aborted9

The HTTP request was aborted before it could complete.

352SslConnectFail10

The TLS/SSL handshake with the remote server failed during connection establishment.

435SslVerificationFail11

The server's TLS certificate could not be verified.

435Unknown12

An error occurred that does not map to any other HttpError value.

672ConnectionClosed13

The connection was closed by the remote end before the full response was received, typically indicating a server or network problem.

672ServerProtocolError14

An HTTP/2 protocol-level error was returned by the server.

679CreatorEnvironmentsNotSupportedByService15

The request was sent from a non-live environment (such as Studio) and the target service does not support creator environments.

704InactivityTimeout16

A streaming request timed out because no data was transferred during the inactivity window.

704TooManyOutstandingRequests17

The request was rejected because the client has exceeded its limit for concurrent or pending requests.

726InvalidRangeResponse18

The server returned an invalid response to a ranged HTTP request, such as responding with a full 200 status instead of the expected 206 Partial Content.

Description

Transport-level errors that can occur when making HTTP requests via HttpService. These values are distinct from HTTP status codes (such as 404 or 500) that a remote server might return in a successful response; HttpError values indicate that the request did not complete normally at the network or client level.

When a request callback receives an error code other than HttpError.OK, the associated HttpResponse should not be considered valid.

History 22

Settings