https://github.com/othreecodes/django-code-challenge
https://github.com/othreecodes/django-code-challenge
django drf jwt
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/othreecodes/django-code-challenge
- Owner: othreecodes
- Created: 2018-07-23T17:21:35.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-07-23T19:12:03.000Z (over 7 years ago)
- Last Synced: 2025-01-20T12:30:50.261Z (about 1 year ago)
- Topics: django, drf, jwt
- Language: Python
- Homepage: https://django-challenge1.herokuapp.com/
- Size: 17.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# django-code-challenge
# Requirements
- Python > 3.6.0
- [Python requirements](requirements.txt)
# CREATE USER ACCOUNT
```
`post`
{
"first_name":"",
"last_name":"",
"username":"",
"email":"",
"password":"",
}
to `/user`
```
# LOGIN TO OBTAIN TOKEN
```
`post`
{
"username":"",
"password":"",
}
to `/login`
```
# Use token to access other parts of the API