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

https://github.com/itsvinayak/jwt-django

Implementing JWT authentication in Django
https://github.com/itsvinayak/jwt-django

django django-rest-framework geeksforgeeks gfg jwt jwt-authentication jwt-token

Last synced: 3 months ago
JSON representation

Implementing JWT authentication in Django

Awesome Lists containing this project

README

          

# JWT-django

JSON Web Token is an open standard for securely transferring data within parties using a JSON object. JWT is used for stateless authentication mechanisms for users and providers, this means maintaining session is on the client-side instead of storing sessions on the server. Here, we will implement the JWT authentication system in Django.