Everlive.Http
Description
A Cloud Code module for sending HTTP requests from Cloud Code.
Static members
Name | Return type | Description |
---|---|---|
delete(url, [options], callback) | Executes a DELETE request. Equivalent to executing Http.request with the DELETE verb. | |
get(url, [options], callback) | Executes a GET request. Equivalent to executing Http.request with the GET verb. | |
post(url, [options], callback) | Executes a POST request. Equivalent to executing Http.request with the POST verb. | |
put(url, [options], callback) | Executes a PUT request. Equivalent to executing Http.request with the PUT verb. | |
request(method, url, [options], callback) | Performs an HTTP(S) request with the specified parameters. |