Class Network.requestIntercepted

    • Field Summary

       
      Serializable ID
      Modifier and Type Field
      protected static long serialVersionUID
      For Object Serialization.
       
      Event Properties
      Modifier and Type Field
      Network.AuthChallenge authChallenge
      Details of the Authorization Challenge encountered.
      String frameId
      The id of the frame that initiated the request.
      String 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.
      Boolean isDownload
      Set if the request is a navigation that will result in a download.
      boolean isNavigationRequest
      Whether this is a navigation request, which can abort the navigation completely.
      String redirectUrl
      Redirect location, only sent if a redirect was intercepted.
      Network.Request request
      [No Description Provided by Google]
      String 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.
      String resourceType
      How the requested resource will be used.
      String responseErrorReason
      Response error if intercepted at response stage or if redirect occurred while intercepting request.
      JsonObject responseHeaders
      Response headers if intercepted at the response stage or if redirect occurred while intercepting request or auth retry occurred.
      Integer responseStatusCode
      Response code if intercepted at response stage or if redirect occurred while intercepting request or auth retry occurred.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean[] optionals()
      Implementing this method allows sub-classes to specify which JSON Properties may be absent or null.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • interceptionId

        🡅  🡇    
        public final java.lang.String 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.
      • frameId

        🡅  🡇    
        public final java.lang.String frameId
        The id of the frame that initiated the request.
      • isNavigationRequest

        🡅  🡇    
        public final boolean isNavigationRequest
        Whether this is a navigation request, which can abort the navigation completely.
      • isDownload

        🡅  🡇    
        public final java.lang.Boolean isDownload
        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).

        OPTIONAL
      • redirectUrl

        🡅  🡇    
        public final java.lang.String redirectUrl
        Redirect location, only sent if a redirect was intercepted.

        OPTIONAL
      • responseErrorReason

        🡅  🡇    
        public final java.lang.String responseErrorReason
        Response error if intercepted at response stage or if redirect occurred while intercepting request.

        OPTIONAL
      • responseStatusCode

        🡅  🡇    
        public final java.lang.Integer responseStatusCode
        Response code if intercepted at response stage or if redirect occurred while intercepting request or auth retry occurred.

        OPTIONAL
      • responseHeaders

        🡅  🡇    
        public final JsonObject responseHeaders
        Response headers if intercepted at the response stage or if redirect occurred while intercepting request or auth retry occurred.

        OPTIONAL
      • requestId

        🡅  🡇    
        public final java.lang.String 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.

        OPTIONAL
    • Constructor Detail

      • requestIntercepted

        🡅  🡇    
        public requestIntercepted​(java.lang.String interceptionId,
                                  Network.Request request,
                                  java.lang.String frameId,
                                  java.lang.String resourceType,
                                  boolean isNavigationRequest,
                                  java.lang.Boolean isDownload,
                                  java.lang.String redirectUrl,
                                  Network.AuthChallenge authChallenge,
                                  java.lang.String responseErrorReason,
                                  java.lang.Integer responseStatusCode,
                                  JsonObject responseHeaders,
                                  java.lang.String requestId)
        Constructor
        Parameters:
        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.
        request - -
        frameId - The id of the frame that initiated the request.
        resourceType - How the requested resource will be used.
        isNavigationRequest - Whether this is a navigation request, which can abort the navigation completely.
        isDownload - 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).
        OPTIONAL
        redirectUrl - Redirect location, only sent if a redirect was intercepted.
        OPTIONAL
        authChallenge - Details of the Authorization Challenge encountered. If this is set then continueInterceptedRequest must contain an authChallengeResponse.
        OPTIONAL
        responseErrorReason - Response error if intercepted at response stage or if redirect occurred while intercepting request.
        OPTIONAL
        responseStatusCode - Response code if intercepted at response stage or if redirect occurred while intercepting request or auth retry occurred.
        OPTIONAL
        responseHeaders - Response headers if intercepted at the response stage or if redirect occurred while intercepting request or auth retry occurred.
        OPTIONAL
        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.
        OPTIONAL
    • Method Detail

      • optionals

        🡅    
        public boolean[] optionals()
        Description copied from class: BaseType
        Implementing this method allows sub-classes to specify which JSON Properties may be absent or null. When binding a JsonObject to a Java-Object, if some of the expected fields for the Java-Object map to Properties which might be left-out or omitted, then that may be indicated by setting that fields array position TRUE.

        NOTE: This array should have a length equal to the number of fields contained by the Java Object. The first boolean in the array should specify whether the first Object Field may by absent. The second boolean should specify whether the second Object Field is optional in the JSON - and so on and so forth...
        Specified by:
        optionals in class BaseType
        Returns:
        A boolean[] array whose length is precisely equal to the number of fields in the Java Object.