django-rest-auth/docs/api_endpoints.rst
2014-10-15 17:32:19 +02:00

76 lines
1.3 KiB
ReStructuredText

API endpoints
=============
Basic
-----
- /rest-auth/login/ (POST)
- username (string)
- password (string)
- /rest-auth/logout/ (POST)
- /rest-auth/password/reset/ (POST)
- email
- /rest-auth/password/reset/confim/ (POST)
- uid
- token
- new_password1
- new_password2
.. note:: uid and token are sent in email after calling /rest-auth/password/reset/
- /rest-auth/password/change/ (POST)
- new_password1
- new_password2
- /rest-auth/user/ (GET)
- /rest-auth/user/ (PUT/PATCH)
- username
- first_name
- last_name
- email
Registration
------------
- /rest-auth/registration/ (POST)
- username
- password1
- password2
- email
.. note:: This endpoint is based on ``allauth.account.views.SignupView`` and uses the same form as in this view. To override fields you have to create custom Signup Form and define it in django settings:
.. code-block:: python
ACCOUNT_FORMS = {
'signup': 'path.to.custom.SignupForm'
}
See allauth documentation for more details.
- /rest-auth/registration/verify-email/ (POST)
- key
Social Media Authentication
---------------------------
Basing on example from installation section :doc:`Installation </installation>`
- /rest-auth/facebook/ (POST)
- access_token