WorkforceOidcConfig

data class WorkforceOidcConfig(val authenticationRequestExtraParams: Map<String, String>? = null, val authorizationEndpoint: String, val clientId: String, val clientSecret: String, val issuer: String, val jwksUri: String, val logoutEndpoint: String, val scope: String? = null, val tokenEndpoint: String, val userInfoEndpoint: String)

Constructors

Link copied to clipboard
constructor(authenticationRequestExtraParams: Map<String, String>? = null, authorizationEndpoint: String, clientId: String, clientSecret: String, issuer: String, jwksUri: String, logoutEndpoint: String, scope: String? = null, tokenEndpoint: String, userInfoEndpoint: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

A string to string map of identifiers specific to the custom identity provider (IdP) being used.

Link copied to clipboard

The OIDC IdP authorization endpoint used to configure your private workforce.

Link copied to clipboard

The OIDC IdP client ID used to configure your private workforce.

Link copied to clipboard

The OIDC IdP client secret used to configure your private workforce.

Link copied to clipboard

The OIDC IdP issuer used to configure your private workforce.

Link copied to clipboard

The OIDC IdP JSON Web Key Set (Jwks) URI used to configure your private workforce.

Link copied to clipboard

The OIDC IdP logout endpoint used to configure your private workforce.

Link copied to clipboard
val scope: String? = null

An array of string identifiers used to refer to the specific pieces of user data or claims that the client application wants to access.

Link copied to clipboard

The OIDC IdP token endpoint used to configure your private workforce.

Link copied to clipboard

The OIDC IdP user information endpoint used to configure your private workforce.