mirror of
https://github.com/Tivix/django-rest-auth.git
synced 2024-11-22 00:56:34 +03:00
Added urlpattern steps in Installation and changed rest_accounts to rest-auth in README.md
This commit is contained in:
parent
c0da444b06
commit
4be5debc5f
25
README.md
25
README.md
|
@ -46,38 +46,45 @@ Installation
|
|||
REST_REGISTRATION_BACKEND = 'rest_auth.backends.rest_registration.RESTRegistrationView'
|
||||
REST_PROFILE_MODULE = 'accounts.UserProfile'
|
||||
|
||||
6. You're good to go now!
|
||||
6. Add rest_auth urls in your project root urls.py
|
||||
|
||||
urlpatterns = patterns('',
|
||||
...,
|
||||
(r'^rest-auth/', include('rest_auth.urls')),
|
||||
)
|
||||
|
||||
7. You're good to go now!
|
||||
|
||||
API endpoints without Authentication
|
||||
------------------------------------
|
||||
|
||||
1. /rest\_accounts/register/
|
||||
1. /rest-auth/register/
|
||||
- POST
|
||||
- username
|
||||
- password
|
||||
- email
|
||||
- first\_name
|
||||
- last\_name
|
||||
2. /rest\_accounts/password/reset/
|
||||
2. /rest-auth/password/reset/
|
||||
- POST
|
||||
- email
|
||||
3. /rest\_accounts/password/reset/confirm/{uidb64}/{token}/
|
||||
3. /rest-auth/password/reset/confirm/{uidb64}/{token}/
|
||||
- POST
|
||||
- new\_password1
|
||||
- new\_password2
|
||||
4. /rest\_accounts/login/
|
||||
4. /rest-auth/login/
|
||||
- POST
|
||||
- username
|
||||
- password
|
||||
5. /rest\_accounts/verify-email/{activation\_key}/
|
||||
5. /rest-auth/verify-email/{activation\_key}/
|
||||
- GET
|
||||
|
||||
API endpoints with Authentication
|
||||
---------------------------------
|
||||
|
||||
1. /rest\_accounts/logout/
|
||||
1. /rest-auth/logout/
|
||||
- GET
|
||||
2. /rest\_accounts/user/
|
||||
2. /rest-auth/user/
|
||||
- GET & POST
|
||||
- POST parameters
|
||||
- user as dictionary
|
||||
|
@ -85,7 +92,7 @@ API endpoints with Authentication
|
|||
- user data example
|
||||
"user": {"id": 1, "first_name": "Person", "last_name": "2"}
|
||||
|
||||
3. /rest\_accounts/password/change/
|
||||
3. /rest-auth/password/change/
|
||||
- POST
|
||||
- new\_password1
|
||||
- new\_password2
|
||||
|
|
Loading…
Reference in New Issue
Block a user