summaryrefslogtreecommitdiff
path: root/docs/oauth2/oidc.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/oauth2/oidc.rst')
-rw-r--r--docs/oauth2/oidc.rst17
1 files changed, 11 insertions, 6 deletions
diff --git a/docs/oauth2/oidc.rst b/docs/oauth2/oidc.rst
index d062386..a3810a6 100644
--- a/docs/oauth2/oidc.rst
+++ b/docs/oauth2/oidc.rst
@@ -1,16 +1,21 @@
OpenID Connect
==============
-OpenID Connect represents a substantial set of behaviors and interactions built on the foundations of OAuth2. OAuthLib supports
-OpenID Connect `Authentication flows`_ when the initial grant type request's ``scope`` parameter contains ``openid``. Clients wishing
-to provide this support must implement several new features within their ``RequestValidator`` subclass.
+OpenID Connect represents a substantial set of behaviors and
+interactions built on the foundations of OAuth2. OAuthLib supports
+OpenID Connect `Authentication flows`_ when the initial grant type
+request's ``scope`` parameter contains ``openid``. Providers wishing
+to provide this support must implement a couple of new features within
+their ``RequestValidator`` subclass.
+
+A new userinfo endpoint can also be implemented to fulfill the core of OIDC.
.. _`Authentication flows`: http://openid.net/specs/openid-connect-core-1_0.html#Authentication
.. toctree::
:maxdepth: 2
- oidc/id_tokens
oidc/validator
-
-
+ oidc/endpoints
+ oidc/grants
+ oidc/id_tokens