The contents of the response, decoded, and then parsed automatically as either one of the form encoding types (either URL-encoded or multipart), determined automatically from the message content-type header.
This method is convenient and offers a single mechanism to parse both
formats, but you may want to consider parsing on format explicitly with
the getUrlEncodedFormData()
or getMultipartFormData()
methods instead.
After parsing & decoding, the result is returned asynchronously as a Promise for a key-value(s) object.
The contents of the response, decoded, and then parsed as multi-part form data. The response is result is returned asynchronously as a Promise for an array of parts with their names, data and metadata.
The contents of the response, decoded, parsed as UTF-8 string, and then parsed as URL-encoded form data. After parsing & decoding, the result is returned asynchronously as a Promise for a key-value(s) object.
The raw bytes of the response. If a content encoding was used, this is the raw encoded data.