AuthorizationParameters

data class AuthorizationParameters(var clientId: String, var scope: List<String>, var state: String, var accessType: String, var codeChallenge: String?, var codeChallengeMethod: String?, var keysJwk: String?)

Parameters provided in an incoming OAuth request.

This struct represents parameters obtained from an incoming OAuth request - that is, the values that an OAuth client would append to the authorization URL when initiating an OAuth sign-in flow.

Constructors

Link copied to clipboard
constructor(clientId: String, scope: List<String>, state: String, accessType: String, codeChallenge: String?, codeChallengeMethod: String?, keysJwk: String?)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard