OpenIdConnectConfigResponse

data class OpenIdConnectConfigResponse(val authorizationEndpoint: String? = null, val certificationUri: String? = null, val issuer: String? = null, val tokenEndpoint: String? = null, val wellKnownOpenIdConfiguration: String? = null)

The configuration settings of the endpoints used for the custom Open ID Connect provider.

Constructors

Link copied to clipboard
constructor(authorizationEndpoint: String? = null, certificationUri: String? = null, issuer: String? = null, tokenEndpoint: String? = null, wellKnownOpenIdConfiguration: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The endpoint to be used to make an authorization request.

Link copied to clipboard

The endpoint that provides the keys necessary to validate the token.

Link copied to clipboard
val issuer: String? = null

The endpoint that issues the token.

Link copied to clipboard
val tokenEndpoint: String? = null

The endpoint to be used to request a token.

Link copied to clipboard

The endpoint that contains all the configuration endpoints for the provider.