mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
e89e264a16
This corresponds to Chromium 85.0.4182.0. This roll includes: - Enable SameSiteByDefaultCookies and CookiesWithoutSameSiteMustBeSecure https://crrev.com/c/2231445 - [FlexNG] Enable FlexNG by default https://crrev.com/c/2216595 Closes #6151.
24 lines
1.0 KiB
Markdown
24 lines
1.0 KiB
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
[Home](./index.md) > [puppeteer](./puppeteer.md) > [Protocol](./puppeteer.protocol.md) > [Fetch](./puppeteer.protocol.fetch.md) > [AuthChallenge](./puppeteer.protocol.fetch.authchallenge.md)
|
|
|
|
## Protocol.Fetch.AuthChallenge interface
|
|
|
|
Authorization challenge for HTTP status code 401 or 407.
|
|
|
|
<b>Signature:</b>
|
|
|
|
```typescript
|
|
export interface AuthChallenge
|
|
```
|
|
|
|
## Properties
|
|
|
|
| Property | Type | Description |
|
|
| --- | --- | --- |
|
|
| [origin](./puppeteer.protocol.fetch.authchallenge.origin.md) | string | Origin of the challenger. |
|
|
| [realm](./puppeteer.protocol.fetch.authchallenge.realm.md) | string | The realm of the challenge. May be empty. |
|
|
| [scheme](./puppeteer.protocol.fetch.authchallenge.scheme.md) | string | The authentication scheme used, such as basic or digest |
|
|
| [source](./puppeteer.protocol.fetch.authchallenge.source.md) | ('Server' \| 'Proxy') | Source of the authentication challenge. (AuthChallengeSource enum) |
|
|
|