data class AuthRequiredEvent : FetchEvent
Issued when the domain is enabled with handleAuthRequests set to true. The request is paused until client responds with continueWithAuth.
<init> |
Issued when the domain is enabled with handleAuthRequests set to true. The request is paused until client responds with continueWithAuth. AuthRequiredEvent(requestId: RequestId, request: Request, frameId: FrameId, resourceType: ResourceType, authChallenge: AuthChallenge) |
authChallenge |
Details of the Authorization Challenge encountered. If this is set, client should respond with continueRequest that contains AuthChallengeResponse. val authChallenge: AuthChallenge |
frameId |
The id of the frame that initiated the request. val frameId: FrameId |
request |
The details of the request. val request: Request |
requestId |
Each request the page makes will have a unique id. val requestId: RequestId |
resourceType |
How the requested resource will be used. val resourceType: ResourceType |