httpRequest
httpRequest(url: string
, callback: Function
, options: ): void
Performs a regular HTTP or HTTPS request. To perform an HTTPS request, insert "https://" at the URL's beginning. The default request method is GET, TCP connect timeout is 6 seconds and total request timeout is 90 seconds. Learn more about the limits.
Parameters
url:
string
HTTP url to query
callback:
Function
Function to be called on completion. The function receives a response object of type HttpRequestResult as a first argument
options:
OptionalAdvanced settings
Returns
type:
void