fix: correct authlib description in Authentication section#3188
Open
fauzan171 wants to merge 2 commits into
Open
fix: correct authlib description in Authentication section#3188fauzan171 wants to merge 2 commits into
fauzan171 wants to merge 2 commits into
Conversation
The previous description 'JavaScript Object Signing and Encryption draft implementation' was inaccurate. Authlib is a comprehensive Python library for building OAuth 1.0, OAuth 2.0, and OpenID Connect clients and servers.
vinta
requested changes
Jun 6, 2026
|
|
||
| - OAuth | ||
| - [authlib](https://github.com/authlib/authlib) - JavaScript Object Signing and Encryption draft implementation. | ||
| - [authlib](https://github.com/authlib/authlib) - A comprehensive library for building OAuth 1.0, OAuth 2.0, and OpenID Connect clients and servers. |
Owner
There was a problem hiding this comment.
How about?
Suggested change
| - [authlib](https://github.com/authlib/authlib) - A comprehensive library for building OAuth 1.0, OAuth 2.0, and OpenID Connect clients and servers. | |
| - [authlib](https://github.com/authlib/authlib) - A comprehensive library for building OAuth, OpenID Connect, and JWT/JWS/JWE/JWK/JWA. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes the description of
authlibin the Authentication > OAuth section.Current (incorrect):
Proposed (correct):
Why this change?
The current description is inaccurate and appears to be a copy-paste error. Authlib is a Python library for OAuth and OpenID Connect — it is not a "JavaScript" library. The JOSE (JSON Object Signing and Encryption) functionality is just one feature of Authlib, not its primary purpose.
The proposed description accurately reflects Authlib's scope as documented on its official README: "The ultimate Python library in building OAuth and OpenID Connect servers and clients."
Checklist