simple JWT handling for django REST Framework
Project description
drf-jwt
JSON Web Token based authentication using Django REST Framework,
the JWT encoded in base64 is put in the headers:
Authorization: Bearer <token>
install:
pip install django-rest-jwt
let JWT do the authentification:
add 'drf_jwt.authentication.JSONWebTokenAuthentication' in authentication classes:
'DEFAULT_AUTHENTICATION_CLASSES': [
'drf_jwt.authentication.JSONWebTokenAuthentication',
]
make endpoints to login and get the JWT:
from drf_jwt.controllers import Auth
urlpatterns = [
path('api/login', Auth.as_view()),
]
suport GET and POST
POST:
{ login, password }
login will be the username of the authenticate function of django
GET:
return a JWT token if you are authenticate
so, one could do a Basic Authentication to the GET endpoints to receve a JWT
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django_rest_jwt-0.1.46-py3-none-any.whl.
File metadata
- Download URL: django_rest_jwt-0.1.46-py3-none-any.whl
- Upload date:
- Size: 6.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.6.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca071dbf9a105686efc06a25202873fda9eedc1905f1c7653a1f185b1ad31120
|
|
| MD5 |
8e48da4d327eee4047acf6e401692fcb
|
|
| BLAKE2b-256 |
1d8c8ed4d67a13ecd2515d7276e38960c59ec00a36eb30ebcc0513e1c327be8e
|