How to interpret the response body.
json
text
arraybuffer
ArrayBuffer
blob
Blob
stream
ReadableStream
none
null
How to interpret the response body.
json— parse as JSON; falls back to raw text when the body is empty or not valid JSON.text— return the body as a string.arraybuffer— return the body as anArrayBuffer(binary downloads).blob— return the body as aBlob.stream— return the rawReadableStreambody without consuming it.none— discard the body and returnnull.