Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 782 Bytes

File metadata and controls

23 lines (15 loc) · 782 Bytes

TokenEndpointAuthMethod

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).

Example Usage

from glean.api_client.models import TokenEndpointAuthMethod

value = TokenEndpointAuthMethod.CLIENT_SECRET_POST

# Open enum: unrecognized values are captured as UnrecognizedStr

Values

Name Value
CLIENT_SECRET_POST client_secret_post
CLIENT_SECRET_BASIC client_secret_basic
NONE none
PRIVATE_KEY_JWT private_key_jwt