chrome-devtools-kotlin / org.hildan.chrome.devtools.domains.fetch / AuthChallenge

AuthChallenge

data class AuthChallenge

Authorization challenge for HTTP status code 401 or 407.

Constructors

<init>

Authorization challenge for HTTP status code 401 or 407.

AuthChallenge(source: String? = null, origin: String, scheme: String, realm: String)

Properties

origin

Origin of the challenger.

val origin: String

realm

The realm of the challenge. May be empty.

val realm: String

scheme

The authentication scheme used, such as basic or digest

val scheme: String

source

Source of the authentication challenge.

val source: String?