Skip to main content
Module

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

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

Authorization challenge for HTTP status code 401 or 407.

Properties

optional
source: ("Server" | "Proxy")

Source of the authentication challenge. (AuthChallengeSource enum)

origin: string

Origin of the challenger.

scheme: string

The authentication scheme used, such as basic or digest

realm: string

The realm of the challenge. May be empty.