Skip to main content

simple jwt handling for django REST Framework

Project description

drf-jwt

JSON Web Token plugin for Django REST Framework

install:

pip install .

let jwt do the authentification:

add 'drf_jwt.authentication.JSONWebTokenAuthentication' in authentication classes:

'DEFAULT_AUTHENTICATION_CLASSES': [
    'drf_jwt.authentication.JSONWebTokenAuthentication',
]

make endpoints to login, 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

GET:

return a JWT token, given the fact that 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 Distribution

django-rest-jwt-0.1.40.tar.gz (3.6 kB view hashes)

Uploaded Source

Built Distribution

django_rest_jwt-0.1.40-py3-none-any.whl (5.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page