[Home](./index.md) > [puppeteer](./puppeteer.md) > [Protocol](./puppeteer.protocol.md) > [Network](./puppeteer.protocol.network.md) > [AuthChallenge](./puppeteer.protocol.network.authchallenge.md) ## Protocol.Network.AuthChallenge interface Authorization challenge for HTTP status code 401 or 407. Signature: ```typescript export interface AuthChallenge ``` ## Properties | Property | Type | Description | | --- | --- | --- | | [origin](./puppeteer.protocol.network.authchallenge.origin.md) | string | Origin of the challenger. | | [realm](./puppeteer.protocol.network.authchallenge.realm.md) | string | The realm of the challenge. May be empty. | | [scheme](./puppeteer.protocol.network.authchallenge.scheme.md) | string | The authentication scheme used, such as basic or digest | | [source](./puppeteer.protocol.network.authchallenge.source.md) | ('Server' \| 'Proxy') | Source of the authentication challenge. (AuthChallengeSource enum) |