You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -692,6 +692,22 @@ Response instance will contain the `OAuth2::Error` instance.
692
692
693
693
### Authorization Grants
694
694
695
+
Note on OAuth 2.1 (draft):
696
+
- PKCE is required for all OAuth clients using the authorization code flow (especially public clients). Implement PKCE in your app when required by your provider. See RFC 7636 and RFC 8252.
697
+
- Redirect URIs must be compared using exact string matching by the Authorization Server.
698
+
- The Implicit grant (response_type=token) and the Resource Owner Password Credentials grant are omitted from OAuth 2.1; they remain here for OAuth 2.0 compatibility but should be avoided for new apps.
699
+
- Bearer tokens in the query string are omitted due to security risks; prefer Authorization header usage.
700
+
- Refresh tokens for public clients must either be sender-constrained (e.g., DPoP/MTLS) or one-time use.
701
+
- The definitions of public and confidential clients are simplified to refer only to whether the client has credentials.
0 commit comments