summaryrefslogtreecommitdiff
path: root/docs/oauth2/oidc.rst
diff options
context:
space:
mode:
authorJonathan Huot <jonathan.huot@gmail.com>2019-10-28 16:10:22 +0100
committerJonathan Huot <jonathan.huot@gmail.com>2019-10-28 16:10:22 +0100
commitab0de9e28db812eb204f12335b07d91361b16676 (patch)
tree7ca9857290247e6dc84d7557f2a600c24ef6b8f2 /docs/oauth2/oidc.rst
parent0c632d8f2955e34818346e96587f9124da449fe1 (diff)
downloadoauthlib-ab0de9e28db812eb204f12335b07d91361b16676.tar.gz
Improved OIDC documentationdoc-oidc
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