An open API service indexing awesome lists of open source software.

https://github.com/othreecodes/django-code-challenge


https://github.com/othreecodes/django-code-challenge

django drf jwt

Last synced: 11 months ago
JSON representation

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