The OAuth 2.0 token endpoint authentication method (RFC 7591). Determines how the client authenticates when exchanging an authorization code for a token. Values use lowercase to match the OAuth 2.0 wire format (RFC 7591 Section 2).
from glean.api_client.models import TokenEndpointAuthMethod
value = TokenEndpointAuthMethod.CLIENT_SECRET_POST
# Open enum: unrecognized values are captured as UnrecognizedStr| Name | Value |
|---|---|
CLIENT_SECRET_POST |
client_secret_post |
CLIENT_SECRET_BASIC |
client_secret_basic |
NONE |
none |
PRIVATE_KEY_JWT |
private_key_jwt |