Authorize request with JSON Web Tokens
Project description
django_jwt_middleware
django_jwt_middleware
is a package used for authorize django request with JSON Web Tokens
1. Installation
pip3 install django-jwt-middleware
or clone
git clone https://github.com/rizki4106/django_jwt_middleware.git
2. Example
with http cookie
If you store jwt key on cookie you can use @middleware.with_cookie
decorator
from django_jwt_middleware import middleware
from rest_framework.decorators import api_view
from rest_framework.response import Response
@middleware.with_cookie(cookie_name="example-token", jwt_key="supersecretkey", algorithm="HS256")
def hello_world(request):
return Response(data={
"message": "hello world"
})
@middleware.with_cookie
takes 3 arguments
name | type | description |
---|---|---|
cookie_name | string | name of cookie that store your jwt token |
jwt_key | string | jsonwebtoken secret key |
algoritm | string | algorithm to decoded your jwt key default is HS256 |
With http headers
If you store jwt key http headers you can use @middleware.with_header
decorator
from django_jwt_middleware import middleware
from rest_framework.decorators import api_view
from rest_framework.response import Response
@middleware.with_header(header_name="example-token", jwt_key="supersecretkey", algorithm="HS256")
def hello_world(request):
return Response(data={
"message": "hello world"
})
@middleware.with_header
takes 3 arguments
name | type | description |
---|---|---|
header_name | string | name of header that store your jwt token |
jwt_key | string | jsonwebtoken secret key |
algoritm | string | algorithm to decoded your jwt key default is HS256 |
3. Response
Type | Description |
---|---|
success | Will continue to request destination |
failed | Return http status code 403 with the message in it |
4. Discovered Problems
if you get error and it said jwt has no attribute decode
try this command
pip3 uninstall pyjwt
pip3 install pyjwt
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django_jwt_middleware-1.1.3.tar.gz
.
File metadata
- Download URL: django_jwt_middleware-1.1.3.tar.gz
- Upload date:
- Size: 3.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fcc0ce419cfbbbe3e53cc0257de984edea45ba1176e4359761737960731548c7 |
|
MD5 | 86f86633f93e180ec11cbfd1bd5461d1 |
|
BLAKE2b-256 | 9f115359f3c6946982e49d458036005ca789949dc024fe68713452b1f58485db |
File details
Details for the file django_jwt_middleware-1.1.3-py3-none-any.whl
.
File metadata
- Download URL: django_jwt_middleware-1.1.3-py3-none-any.whl
- Upload date:
- Size: 4.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 70616e30049e22befc425d1c01e98c62cc179db5a0ca0f67d982c1981784569e |
|
MD5 | 7bd0d92475d239c7dee317ed58591ff6 |
|
BLAKE2b-256 | 19ba09adf2c0ade4ce0ec432a52601b4fa944b71f1d41fbdab2dfa3cdf392b0e |