Skip to main content
Module

x/puppeteer_plus/mod.ts>Protocol.Fetch.ContinueResponseRequest

Deno port of puppeteer base on latest TypeScript source.
Go to Latest
interface Protocol.Fetch.ContinueResponseRequest
import { type Protocol } from "https://deno.land/x/puppeteer_plus@0.14.0/mod.ts";
const { ContinueResponseRequest } = Protocol.Fetch;

Properties

requestId: RequestId

An id the client received in requestPaused event.

optional
responseCode: integer

An HTTP response code. If absent, original response code will be used.

optional
responsePhrase: string

A textual representation of responseCode. If absent, a standard phrase matching responseCode is used.

optional
responseHeaders: HeaderEntry[]

Response headers. If absent, original response headers will be used.

optional
binaryResponseHeaders: string

Alternative way of specifying response headers as a \0-separated series of name: value pairs. Prefer the above method unless you need to represent some non-UTF8 values that can't be transmitted over the protocol as text. (Encoded as a base64 string when passed over JSON)