summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJonathan Huot <jonathan.huot@thomsonreuters.com>2018-12-13 16:32:00 +0100
committerJonathan Huot <jonathan.huot@thomsonreuters.com>2018-12-13 16:32:00 +0100
commit7a0b1e9cad04806bf4be5c7380e75aaf03ebec2c (patch)
tree40c85dcd577a1d8ed2cc9f2bdb5858112a8f09fb /docs
parent5d9a9c90ba04f85477c7859a3cc7b13577fc24f9 (diff)
downloadoauthlib-7a0b1e9cad04806bf4be5c7380e75aaf03ebec2c.tar.gz
Add OAuth2.0 Authorization Server Metadata documentation
Diffstat (limited to 'docs')
-rw-r--r--docs/oauth2/endpoints/endpoints.rst6
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/oauth2/endpoints/endpoints.rst b/docs/oauth2/endpoints/endpoints.rst
index 8068ec4..0dd2da0 100644
--- a/docs/oauth2/endpoints/endpoints.rst
+++ b/docs/oauth2/endpoints/endpoints.rst
@@ -10,12 +10,14 @@ certain users resources to a client, to supply said client with a token
embodying this authorization and to verify that the token is valid when the
client attempts to access the user resources on their behalf.
+
.. toctree::
:maxdepth: 2
authorization
introspect
token
+ metadata
revocation
resource
@@ -29,5 +31,5 @@ later (but it's applicable to all other web frameworks libraries).
The main purpose of the endpoint in OAuthLib is to figure out which grant type
or token to dispatch the request to.
-Then, you can extend your OAuth implementation by proposing introspect or
-revocation endpoints.
+Then, you can extend your OAuth implementation by proposing introspect,
+revocation and/or providing metadata endpoints.