Get Oidc Openid Config Result
data class GetOidcOpenidConfigResult(val authorizationEndpoint: String, val grantTypesSupporteds: List<String>, val id: String, val idTokenSigningAlgValuesSupporteds: List<String>, val issuer: String, val jwksUri: String, val name: String, val namespace: String? = null, val requestUriParameterSupported: Boolean, val responseTypesSupporteds: List<String>, val scopesSupporteds: List<String>, val subjectTypesSupporteds: List<String>, val tokenEndpoint: String, val tokenEndpointAuthMethodsSupporteds: List<String>, val userinfoEndpoint: String)
A collection of values returned by getOidcOpenidConfig.
Constructors
Link copied to clipboard
constructor(authorizationEndpoint: String, grantTypesSupporteds: List<String>, id: String, idTokenSigningAlgValuesSupporteds: List<String>, issuer: String, jwksUri: String, name: String, namespace: String? = null, requestUriParameterSupported: Boolean, responseTypesSupporteds: List<String>, scopesSupporteds: List<String>, subjectTypesSupporteds: List<String>, tokenEndpoint: String, tokenEndpointAuthMethodsSupporteds: List<String>, userinfoEndpoint: String)
Properties
Link copied to clipboard
The Authorization Endpoint for the provider.
Link copied to clipboard
The grant types supported by the provider.
Link copied to clipboard
The signing algorithms supported by the provider.
Link copied to clipboard
Specifies whether Request URI Parameter is supported by the provider.
Link copied to clipboard
The response types supported by the provider.
Link copied to clipboard
The scopes supported by the provider.
Link copied to clipboard
The subject types supported by the provider.
Link copied to clipboard
The Token Endpoint for the provider.
Link copied to clipboard
The token endpoint auth methods supported by the provider.
Link copied to clipboard
The User Info Endpoint for the provider