django-rest-auth/docs/api_endpoints.rst
2020-02-29 18:10:25 -06:00

81 lines
1.7 KiB
ReStructuredText

API endpoints
=============
Basic
-----
- /dj-rest-auth/login/ (POST)
- username
- email
- password
Returns Token key
- /dj-rest-auth/logout/ (POST)
.. note:: ``ACCOUNT_LOGOUT_ON_GET = True`` to allow logout using GET - this is the exact same configuration from allauth. NOT recommended, see: http://django-allauth.readthedocs.io/en/latest/views.html#logout
- /dj-rest-auth/password/reset/ (POST)
- email
- /dj-rest-auth/password/reset/confirm/ (POST)
- uid
- token
- new_password1
- new_password2
.. note:: uid and token are sent in email after calling /dj-rest-auth/password/reset/
- /dj-rest-auth/password/change/ (POST)
- new_password1
- new_password2
- old_password
.. note:: ``OLD_PASSWORD_FIELD_ENABLED = True`` to use old_password.
.. note:: ``LOGOUT_ON_PASSWORD_CHANGE = False`` to keep the user logged in after password change
- /dj-rest-auth/user/ (GET, PUT, PATCH)
- username
- first_name
- last_name
Returns pk, username, email, first_name, last_name
Registration
------------
- /dj-rest-auth/registration/ (POST)
- username
- password1
- password2
- email
- /dj-rest-auth/registration/verify-email/ (POST)
- key
Social Media Authentication
---------------------------
Basing on example from installation section :doc:`Installation </installation>`
- /dj-rest-auth/facebook/ (POST)
- access_token
- code
.. note:: ``access_token`` OR ``code`` can be used as standalone arguments, see https://github.com/iMerica/dj-rest-auth/blob/master/dj_rest_auth/registration/views.py
- /dj-rest-auth/twitter/ (POST)
- access_token
- token_secret