HTTP
Table to work with HTTP requests
Request(method: string
, url: string
, data [?]
: table
, callback: function
, param [?]
: string
): boolean
string
, url: string
, data [?]
: table
, callback: function
, param [?]
: string
): boolean
Name
Type
Description
method
string
HTTP method
url
string
URL
data [?]
table
data to send
.headers
table
headers
.cookies
table | string
cookies. Might be a string.
.data
table | string
data to send. Might be a string.
callback
function
callback function to call when request is done. Take 1 argument - response data table, see example.
param [?]
string
string parameter to pass to callback function to identify request
Do HTTP request. Returns true
if request was sent successfully.
Example
Last updated