puppeteer/new-docs/puppeteer.protocol.network.requestinterceptedevent.md
2020-07-13 14:01:35 +01:00

3.6 KiB

Home > puppeteer > Protocol > Network > RequestInterceptedEvent

Protocol.Network.RequestInterceptedEvent interface

Details of an intercepted HTTP request, which must be either allowed, blocked, modified or mocked. Deprecated, use Fetch.requestPaused instead.

Signature:

export interface RequestInterceptedEvent 

Properties

Property Type Description
authChallenge AuthChallenge Details of the Authorization Challenge encountered. If this is set then continueInterceptedRequest must contain an authChallengeResponse.
frameId Page.FrameId The id of the frame that initiated the request.
interceptionId InterceptionId Each request the page makes will have a unique id, however if any redirects are encountered while processing that fetch, they will be reported with the same id as the original fetch. Likewise if HTTP authentication is needed then the same fetch id will be used.
isDownload boolean Set if the request is a navigation that will result in a download. Only present after response is received from the server (i.e. HeadersReceived stage).
isNavigationRequest boolean Whether this is a navigation request, which can abort the navigation completely.
redirectUrl string Redirect location, only sent if a redirect was intercepted.
request Request
requestId RequestId If the intercepted request had a corresponding requestWillBeSent event fired for it, then this requestId will be the same as the requestId present in the requestWillBeSent event.
resourceType ResourceType How the requested resource will be used.
responseErrorReason ErrorReason Response error if intercepted at response stage or if redirect occurred while intercepting request.
responseHeaders Headers Response headers if intercepted at the response stage or if redirect occurred while intercepting request or auth retry occurred.
responseStatusCode integer Response code if intercepted at response stage or if redirect occurred while intercepting request or auth retry occurred.