HttpRequestOptions
Advanced HTTP request options
Props
enableSystemLog
enableSystemLog: boolean
If set to true, enables logging the POST request body. False by default
headers
headers: {[header: string]: string}
Additional Request headers.
method
method: string
HTTP request method name as a string: 'GET', 'POST' etc. It is 'GET' by default.
params
params: {[key: string]: string}
Optional request parameters. They can be specified in URL itself as well
postData
postData: string
If 'method' is set to 'POST', 'PUT' or 'PATCH', specifies a raw utf-8 encoded data string that will be sent as the HTTP request body
rawOutput
rawOutput: boolean
If set to true, Net.HttpRequestResult.data will contain a list of 1-byte numbers corresponding to HTTP response data. If set to false, Net.HttpRequestResult.data will be undefined.
timeout
timeout: number
If set, overrides default HTTP request timeout, in seconds, which is 90 seconds by default. Timeout can only be decreased