File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ OpenID Connect
44OpenID Connect support
55======================
66
7- ``django-oauth-toolkit `` supports OpenID Connect (OIDC), which standardizes
8- authentication flows and provides a plug and play integration with other
7+ ``django-oauth-toolkit `` supports ` OpenID Connect < https://openid.net/specs/openid-connect-core-1_0.html >`_
8+ (OIDC), which standardizes authentication flows and provides a plug and play integration with other
99systems. OIDC is built on top of OAuth 2.0 to provide:
1010
1111* Generating ID tokens as part of the login process. These are JWT that
Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ OAUTH2_SERVER_CLASS
146146~~~~~~~~~~~~~~~~~~~
147147The import string for the ``server_class `` (or ``oauthlib.oauth2.Server `` subclass)
148148used in the ``OAuthLibMixin `` that implements OAuth2 grant types. It defaults
149- to ``oauthlib.oauth2.Server ``, except when OIDC support is enabled, when the
149+ to ``oauthlib.oauth2.Server ``, except when :doc: ` oidc ` is enabled, when the
150150default is ``oauthlib.openid.Server ``.
151151
152152OAUTH2_VALIDATOR_CLASS
@@ -287,6 +287,13 @@ According to `OAuth 2.0 Security Best Current Practice <https://oauth.net/2/oaut
287287- Public clients MUST use PKCE `RFC7636 <https://datatracker.ietf.org/doc/html/rfc7636 >`_
288288- For confidential clients, the use of PKCE `RFC7636 <https://datatracker.ietf.org/doc/html/rfc7636 >`_ is RECOMMENDED.
289289
290+ OIDC_ENABLED
291+ ~~~~~~~~~~~~
292+ Default: ``False ``
293+
294+ Whether or not :doc: `oidc ` support is enabled.
295+
296+
290297OIDC_RSA_PRIVATE_KEY
291298~~~~~~~~~~~~~~~~~~~~
292299Default: ``"" ``
You can’t perform that action at this time.
0 commit comments