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
4
4
OpenID Connect support
5
5
======================
6
6
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
9
9
systems. OIDC is built on top of OAuth 2.0 to provide:
10
10
11
11
* 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
146
146
~~~~~~~~~~~~~~~~~~~
147
147
The import string for the ``server_class `` (or ``oauthlib.oauth2.Server `` subclass)
148
148
used 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
150
150
default is ``oauthlib.openid.Server ``.
151
151
152
152
OAUTH2_VALIDATOR_CLASS
@@ -287,6 +287,13 @@ According to `OAuth 2.0 Security Best Current Practice <https://oauth.net/2/oaut
287
287
- Public clients MUST use PKCE `RFC7636 <https://datatracker.ietf.org/doc/html/rfc7636 >`_
288
288
- For confidential clients, the use of PKCE `RFC7636 <https://datatracker.ietf.org/doc/html/rfc7636 >`_ is RECOMMENDED.
289
289
290
+ OIDC_ENABLED
291
+ ~~~~~~~~~~~~
292
+ Default: ``False ``
293
+
294
+ Whether or not :doc: `oidc ` support is enabled.
295
+
296
+
290
297
OIDC_RSA_PRIVATE_KEY
291
298
~~~~~~~~~~~~~~~~~~~~
292
299
Default: ``"" ``
You can’t perform that action at this time.
0 commit comments