Skip to main content

OidcTokenEndpointAuthMethod

The token endpoint authentication method for a confidential OIDC client.

Refer to https://openid.net/specs/openid-connect-core-1_0.html#ClientAuthentication

enum OidcTokenEndpointAuthMethod {
client_secret_post
none
private_key_jwt
}

Values

OidcTokenEndpointAuthMethod.client_secret_post

Client authenticates by including the client secret in the token request body.

OidcTokenEndpointAuthMethod.none

No client authentication (public clients).

OidcTokenEndpointAuthMethod.private_key_jwt

Client authenticates by sending a signed JWT assertion using a registered public key.

Member Of

OidcClient object ● OidcClientInput input