core.oauthgranttype
Home > @medplum/core > OAuthGrantType
OAuthGrantType enum
OAuth 2.0 Grant Type Identifiers Standard identifiers: https://datatracker.ietf.org/doc/html/draft-ietf-oauth-v2-1-07\#name-grant-types JWT bearer extension: https://datatracker.ietf.org/doc/html/rfc7523 Token exchange extension: https://datatracker.ietf.org/doc/html/rfc8693
Signature:
export declare enum OAuthGrantType
Enumeration Members
| Member | Value | Description |
|---|---|---|
| AuthorizationCode | "authorization_code" | |
| ClientCredentials | "client_credentials" | |
| JwtBearer | "urn:ietf:params:oauth:grant-type:jwt-bearer" | |
| RefreshToken | "refresh_token" | |
| TokenExchange | "urn:ietf:params:oauth:grant-type:token-exchange" |