puppeteer/new-docs/puppeteer.protocol.network.request.md
Johan Bay e89e264a16
feat(chromium): roll Chromium to r782078 (#6250)
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.
2020-07-20 17:17:06 +02:00

30 lines
2.2 KiB
Markdown

<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) &gt; [puppeteer](./puppeteer.md) &gt; [Protocol](./puppeteer.protocol.md) &gt; [Network](./puppeteer.protocol.network.md) &gt; [Request](./puppeteer.protocol.network.request.md)
## Protocol.Network.Request interface
HTTP request data.
<b>Signature:</b>
```typescript
export interface Request
```
## Properties
| Property | Type | Description |
| --- | --- | --- |
| [hasPostData](./puppeteer.protocol.network.request.haspostdata.md) | boolean | True when the request has POST data. Note that postData might still be omitted when this flag is true when the data is too long. |
| [headers](./puppeteer.protocol.network.request.headers.md) | [Headers](./puppeteer.protocol.network.headers.md) | HTTP request headers. |
| [initialPriority](./puppeteer.protocol.network.request.initialpriority.md) | [ResourcePriority](./puppeteer.protocol.network.resourcepriority.md) | Priority of the resource request at the time request is sent. |
| [isLinkPreload](./puppeteer.protocol.network.request.islinkpreload.md) | boolean | Whether is loaded via link preload. |
| [method](./puppeteer.protocol.network.request.method.md) | string | HTTP request method. |
| [mixedContentType](./puppeteer.protocol.network.request.mixedcontenttype.md) | [Security.MixedContentType](./puppeteer.protocol.security.mixedcontenttype.md) | The mixed content type of the request. |
| [postData](./puppeteer.protocol.network.request.postdata.md) | string | HTTP POST request data. |
| [referrerPolicy](./puppeteer.protocol.network.request.referrerpolicy.md) | ('unsafe-url' \| 'no-referrer-when-downgrade' \| 'no-referrer' \| 'origin' \| 'origin-when-cross-origin' \| 'same-origin' \| 'strict-origin' \| 'strict-origin-when-cross-origin') | The referrer policy of the request, as defined in https://www.w3.org/TR/referrer-policy/ (RequestReferrerPolicy enum) |
| [url](./puppeteer.protocol.network.request.url.md) | string | Request URL (without fragment). |
| [urlFragment](./puppeteer.protocol.network.request.urlfragment.md) | string | Fragment of the requested URL starting with hash, if present. |