http
Request functions, this functions will only work when the unsafe script functionality is turned on
http.get
Argument
Type
Description
url
String
URL to request to
Returns the response of the website
http.get_async
Argument
Type
Description
url
String
URL to request to
method
Table
Table containing the method that will be ran once the request is completed
This method wont hang the game while the request doesnt have a response
http.post
Argument
Type
Description
url
String
URL to request to, containing parameters
Returns the response of the website
http.post_async
Argument
Type
Description
url
String
URL to request to, containing parameters
method
Table
Table containing the method that will be ran once the request is completed
This method wont hang the game while the request doesnt have a response
http.load
Argument
Type
Description
url
String
URL where the Lua code is
This method will load the code inside the specified URL into the script context
Last updated
Was this helpful?