Skip to content

Commit

Permalink
chore: add implicit and ropg grant types
Browse files Browse the repository at this point in the history
  • Loading branch information
emmanuelgautier committed Sep 3, 2024
1 parent 96fff03 commit b0e800e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,8 @@ Where to discover learning resources about OpenID Connect.
- [authorization_code](https://datatracker.ietf.org/doc/html/rfc6749?grant_type=authorization_code#section-1.3.1) - OAuth 2.0 Authorization Code Grant Type which fit well public client authorization like web apps.
- [refresh_token](https://datatracker.ietf.org/doc/html/rfc6749?grant_type=refresh_token#section-1.5) - OAuth 2.0 Refresh Token Grant Type used to exchange a refresh token against a short life access token and sometime a new refresh token as well.
- [client_credentials](https://datatracker.ietf.org/doc/html/rfc6749?grant_type=client_credentials#section-4.4) - OAuth 2.0 Client Credentials Grant providing a way to get token without user interaction which fit well machine to machine communications.
- [implicit](https://datatracker.ietf.org/doc/html/rfc6749?grant_type=implicit#section-4.2) - OAuth 2.0 Implicit Grant Type which is deprecated and should not be used anymore.
- [password](https://datatracker.ietf.org/doc/html/rfc6749?grant_type=password#section-4.3) - OAuth 2.0 Resource Owner Password Credentials Grant Type which is not recommended to use anymore.
- [urn:ietf:params:oauth:grant-type:device_code](https://datatracker.ietf.org/doc/html/rfc8628#section-3.4) - OAuth 2.0 Device Authorization Grant focused on interaction with user outside of a browser context like smart TVs.
- [urn:ietf:params:oauth:grant-type:jwt-bearer](https://datatracker.ietf.org/doc/html/rfc7523) - JSON Web Token (JWT) Profile for OAuth 2.0 used to authorize a client to get an access token with another JWT issued by a trusted provider.
- [urn:ietf:params:oauth:grant-type:token-exchange](https://datatracker.ietf.org/doc/html/rfc8693) - OAuth 2.0 Token Exchange is a Grant Type which provides a way to get tokens from another token and give the ability to add an actor claim.
Expand Down

0 comments on commit b0e800e

Please sign in to comment.