Merge pull request #1517 from turt2live/travis/c2s/auth-header
Dedicate a section on how to use access tokens
This commit is contained in:
commit
26746cf785
2 changed files with 19 additions and 4 deletions
|
@ -0,0 +1 @@
|
||||||
|
Clarify how access tokens are meant to be supplied to the homeserver.
|
|
@ -191,10 +191,6 @@ previously obtained credentials in the form of an ``access_token`` query
|
||||||
parameter or through an Authorization Header of ``Bearer $access_token``.
|
parameter or through an Authorization Header of ``Bearer $access_token``.
|
||||||
An access token is typically obtained via the `Login`_ or `Registration`_ processes.
|
An access token is typically obtained via the `Login`_ or `Registration`_ processes.
|
||||||
|
|
||||||
When credentials are required but missing or invalid, the HTTP call will
|
|
||||||
return with a status of 401 and the error code, ``M_MISSING_TOKEN`` or
|
|
||||||
``M_UNKNOWN_TOKEN`` respectively.
|
|
||||||
|
|
||||||
.. NOTE::
|
.. NOTE::
|
||||||
|
|
||||||
This specification does not mandate a particular format for the access
|
This specification does not mandate a particular format for the access
|
||||||
|
@ -202,6 +198,24 @@ return with a status of 401 and the error code, ``M_MISSING_TOKEN`` or
|
||||||
to choose an appropriate format. Server implementors may like to investigate
|
to choose an appropriate format. Server implementors may like to investigate
|
||||||
`macaroons <macaroon_>`_.
|
`macaroons <macaroon_>`_.
|
||||||
|
|
||||||
|
Using access tokens
|
||||||
|
~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
Access tokens may be provided in two ways, both of which the homeserver MUST
|
||||||
|
support:
|
||||||
|
|
||||||
|
1. Via a query string parameter, ``access_token=TheTokenHere``.
|
||||||
|
#. Via a request header, ``Authorization: Bearer TheTokenHere``.
|
||||||
|
|
||||||
|
Clients are encouraged to use the ``Authorization`` header where possible
|
||||||
|
to prevent the access token being leaked in access/HTTP logs. The query
|
||||||
|
string should only be used in cases where the ``Authorization`` header is
|
||||||
|
inaccessible for the client.
|
||||||
|
|
||||||
|
When credentials are required but missing or invalid, the HTTP call will
|
||||||
|
return with a status of 401 and the error code, ``M_MISSING_TOKEN`` or
|
||||||
|
``M_UNKNOWN_TOKEN`` respectively.
|
||||||
|
|
||||||
Relationship between access tokens and devices
|
Relationship between access tokens and devices
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue