Skip to content

Commit

Permalink
Update server.rst docs to include request uri in auth code (#714)
Browse files Browse the repository at this point in the history
Update server.rst docs to include request uri in auth code
  • Loading branch information
JonathanHuot committed Jan 29, 2020
2 parents 9486345 + 00d4d5a commit 845892c
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docs/oauth2/server.rst
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,17 @@ the token.
# the scopes into a string.
scopes = django.db.models.TextField()
**Redirect URI**:

If the client specifies a redirect_uri when obtaining code then that
redirect URI must be bound to the code and verified equal in this
method, according to RFC 6749 section 4.1. This field holds that
bound value.

.. code-block:: python
redirect_uri = django.db.models.TextField()
**Authorization Code**:

An unguessable unique string of characters.
Expand Down

0 comments on commit 845892c

Please sign in to comment.