← Back to Fetch domain

Fetch.takeResponseBodyAsStream

Returns a handle to the stream representing the response body. The request must be paused in the HeadersReceived stage. Note that after this command the request can't be continued as is -- client either needs to cancel it or to provide the response body. The stream only supports sequential read, IO.read will fail if the position is specified. This method is mutually exclusive with getResponseBody. Calling other methods that affect the request or disabling fetch domain before body is received results in an undefined behavior.

Domain: Fetch stable

Parameters

NameTypeDescription
requestIdRequestId

Returns

NameTypeDescription
streamIO.StreamHandle

Example Request

{
  "id": 1,
  "method": "Fetch.takeResponseBodyAsStream",
  "params": {
    "requestId": "request-1"
  }
}

Example Response

{
  "id": 1,
  "result": {
    "stream": "stream-value"
  }
}

Usage in Node.js

const result = await send('Fetch.takeResponseBodyAsStream', {"requestId": "request-1"});
console.log(result);
// {"stream": "stream-value"}