summaryrefslogtreecommitdiff
path: root/oauthlib/oauth1/rfc5849
diff options
context:
space:
mode:
Diffstat (limited to 'oauthlib/oauth1/rfc5849')
-rw-r--r--oauthlib/oauth1/rfc5849/endpoints/access_token.py2
-rw-r--r--oauthlib/oauth1/rfc5849/endpoints/authorization.py2
-rw-r--r--oauthlib/oauth1/rfc5849/endpoints/request_token.py2
-rw-r--r--oauthlib/oauth1/rfc5849/endpoints/resource.py2
4 files changed, 4 insertions, 4 deletions
diff --git a/oauthlib/oauth1/rfc5849/endpoints/access_token.py b/oauthlib/oauth1/rfc5849/endpoints/access_token.py
index ab953a4..870a675 100644
--- a/oauthlib/oauth1/rfc5849/endpoints/access_token.py
+++ b/oauthlib/oauth1/rfc5849/endpoints/access_token.py
@@ -22,7 +22,7 @@ class AccessTokenEndpoint(BaseEndpoint):
Typical use is to instantiate with a request validator and invoke the
``create_access_token_response`` from a view function. The tuple returned
has all information necessary (body, status, headers) to quickly form
- and return a proper response. See :doc:`validator` for details on which
+ and return a proper response. See :doc:`/oauth1/validator` for details on which
validator methods to implement for this endpoint.
"""
diff --git a/oauthlib/oauth1/rfc5849/endpoints/authorization.py b/oauthlib/oauth1/rfc5849/endpoints/authorization.py
index 5b78299..a7bbe29 100644
--- a/oauthlib/oauth1/rfc5849/endpoints/authorization.py
+++ b/oauthlib/oauth1/rfc5849/endpoints/authorization.py
@@ -33,7 +33,7 @@ class AuthorizationEndpoint(BaseEndpoint):
validate the request, create a verifier as well as prepare the final
redirection URI used to send the user back to the client.
- See :doc:`validator` for details on which validator methods to implement
+ See :doc:`/oauth1/validator` for details on which validator methods to implement
for this endpoint.
"""
diff --git a/oauthlib/oauth1/rfc5849/endpoints/request_token.py b/oauthlib/oauth1/rfc5849/endpoints/request_token.py
index 424e33f..5c598e1 100644
--- a/oauthlib/oauth1/rfc5849/endpoints/request_token.py
+++ b/oauthlib/oauth1/rfc5849/endpoints/request_token.py
@@ -22,7 +22,7 @@ class RequestTokenEndpoint(BaseEndpoint):
Typical use is to instantiate with a request validator and invoke the
``create_request_token_response`` from a view function. The tuple returned
has all information necessary (body, status, headers) to quickly form
- and return a proper response. See :doc:`validator` for details on which
+ and return a proper response. See :doc:`/oauth1/validator` for details on which
validator methods to implement for this endpoint.
"""
diff --git a/oauthlib/oauth1/rfc5849/endpoints/resource.py b/oauthlib/oauth1/rfc5849/endpoints/resource.py
index fe3295c..7718852 100644
--- a/oauthlib/oauth1/rfc5849/endpoints/resource.py
+++ b/oauthlib/oauth1/rfc5849/endpoints/resource.py
@@ -23,7 +23,7 @@ class ResourceEndpoint(BaseEndpoint):
view. If invalid create and return an error response directly from the
decorator.
- See :doc:`validator` for details on which validator methods to implement
+ See :doc:`/oauth1/validator` for details on which validator methods to implement
for this endpoint.
An example decorator::