RequestInfo

data class RequestInfo(    val url: String,     val method: HttpMethod,     val dpop: String? = null,     val clientAttestation: String? = null,     val clientAttestationPop: String? = null)(source)

Holds information about the HTTP request the client has made, to validate client authentication.

Constructors

Link copied to clipboard
constructor(url: String, method: HttpMethod, dpop: String? = null, clientAttestation: String? = null, clientAttestationPop: String? = null)

Properties

Link copied to clipboard

Value of the header OAuth-Client-Attestation (OAuth 2.0 Attestation-Based Client Authentication).

Link copied to clipboard

Value of the header OAuth-Client-Attestation-PoP (OAuth 2.0 Attestation-Based Client Authentication).

Link copied to clipboard
val dpop: String? = null

Value of the header DPoP (RFC 9449).

Link copied to clipboard
val method: HttpMethod

HTTP method that the client has used.

Link copied to clipboard
val url: String

URL that has been used to send this request.