Skip to content

Commit ec34fe9

Browse files
authored
Corrections to glossary terms and documentation links. (#1136)
1 parent e506fce commit ec34fe9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/resource_server.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
Separate Resource Server
22
========================
3-
Django OAuth Toolkit allows to separate the :term:`Authentication Server` and the :term:`Resource Server.`
3+
Django OAuth Toolkit allows to separate the :term:`Authorization Server` and the :term:`Resource Server`.
44
Based on the `RFC 7662 <https://tools.ietf.org/html/rfc7662>`_ Django OAuth Toolkit provides
55
a rfc-compliant introspection endpoint.
66
As well the Django OAuth Toolkit allows to verify access tokens by the use of an introspection endpoint.
77

88

99
Setup the Authentication Server
1010
-------------------------------
11-
Setup the :term:`Authentication Server` as described in the :ref:`tutorial`.
11+
Setup the :term:`Authorization Server` as described in the :doc:`tutorial/tutorial`.
1212
Create a OAuth2 access token for the :term:`Resource Server` and add the
1313
``introspection``-Scope to the settings.
1414

@@ -21,7 +21,7 @@ Create a OAuth2 access token for the :term:`Resource Server` and add the
2121
...
2222
},
2323
24-
The :term:`Authentication Server` will listen for introspection requests.
24+
The :term:`Authorization Server` will listen for introspection requests.
2525
The endpoint is located within the ``oauth2_provider.urls`` as ``/introspect/``.
2626

2727
Example Request::
@@ -49,10 +49,10 @@ Example Response::
4949

5050
Setup the Resource Server
5151
-------------------------
52-
Setup the :term:`Resource Server` like the :term:`Authentication Server` as described in the :ref:`tutorial`.
52+
Setup the :term:`Resource Server` like the :term:`Authorization Server` as described in the :doc:`tutorial/tutorial`.
5353
Add ``RESOURCE_SERVER_INTROSPECTION_URL`` and **either** ``RESOURCE_SERVER_AUTH_TOKEN``
5454
**or** ``RESOURCE_SERVER_INTROSPECTION_CREDENTIALS`` as a ``(id,secret)`` tuple to your settings.
55-
The :term:`Resource Server` will try to verify its requests on the :term:`Authentication Server`.
55+
The :term:`Resource Server` will try to verify its requests on the :term:`Authorization Server`.
5656

5757
.. code-block:: python
5858
@@ -66,7 +66,7 @@ The :term:`Resource Server` will try to verify its requests on the :term:`Authen
6666
6767
``RESOURCE_SERVER_INTROSPECTION_URL`` defines the introspection endpoint and
6868
``RESOURCE_SERVER_AUTH_TOKEN`` an authentication token to authenticate against the
69-
:term:`Authentication Server`.
69+
:term:`Authorization Server`.
7070
As allowed by RFC 7662, some external OAuth 2.0 servers support HTTP Basic Authentication.
7171
For these, use:
7272
``RESOURCE_SERVER_INTROSPECTION_CREDENTIALS=('client_id','client_secret')`` instead

0 commit comments

Comments
 (0)