summaryrefslogtreecommitdiff
path: root/docs/oauth2
diff options
context:
space:
mode:
authorHoylen Sue <hoylen@hoylen.com>2020-06-03 13:01:25 +1000
committerGitHub <noreply@github.com>2020-06-03 09:01:25 +0600
commitbda81b3cb6306dec19a6e60113e21b2933d0950c (patch)
tree1bfce216e41924bde8392e9f63976deeb035fce0 /docs/oauth2
parent0404b486b11b81de780234b944179fa7bde6f2b7 (diff)
downloadoauthlib-bda81b3cb6306dec19a6e60113e21b2933d0950c.tar.gz
OAuth 1.0a signature methods: RSA-SHA256, RSA-SHA512 and HMAC-SHA512 (#723)
* Adding support for RSA-SHA256. * Added support for HMAC-SHA512, RSA-SHA256 and RSA-SHA512 signature methods. * Made version dependencies consistent. * Updated OAuth1 signature tests. * Fixed parsing of netloc/host. Deprecated old functions. * Refactored and expanded tests to include signature validate. * Update docs for HMAC-SHA512, RSA-SHA256 and RSA-SHA512 signature methods. * Updated code comments in oauth1 signatures module. * Updated changelog. * Update docs/feature_matrix.rst Co-Authored-By: Omer Katz <omer.drow@gmail.com> * Used parenthesis instead of backslash to break lines. * Fixed typo Co-authored-by: Omer Katz <omer.drow@gmail.com> Co-authored-by: Omer Katz <omer.drow@gmail.com>
Diffstat (limited to 'docs/oauth2')
-rw-r--r--docs/oauth2/endpoints/metadata.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/oauth2/endpoints/metadata.rst b/docs/oauth2/endpoints/metadata.rst
index d44e8b7..a879765 100644
--- a/docs/oauth2/endpoints/metadata.rst
+++ b/docs/oauth2/endpoints/metadata.rst
@@ -2,7 +2,7 @@
Metadata endpoint
===================
-OAuth2.0 Authorization Server Metadata (`RFC8414`_) endpoint provide the metadata of your authorization server. Since the metadata results can be a combination of OAuthlib's Endpoint (see :doc:`preconfigured_servers`), the MetadataEndpoint's class takes a list of Endpoints in parameter, and aggregate the metadata in the response.
+OAuth2.0 Authorization Server Metadata (`RFC8414`_) endpoint provide the metadata of your authorization server. Since the metadata results can be a combination of OAuthlib's Endpoint (see :doc:`/oauth2/preconfigured_servers`), the MetadataEndpoint's class takes a list of Endpoints in parameter, and aggregate the metadata in the response.
See below an example of usage with `bottle-oauthlib`_ when using a `LegacyApplicationServer` (password grant) endpoint: