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
- Host: GitHub
- URL: https://github.com/itsvinayak/jwt-django
- Owner: itsvinayak
- Created: 2020-04-19T06:59:42.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-19T07:05:21.000Z (about 6 years ago)
- Last Synced: 2025-02-24T11:26:13.132Z (over 1 year ago)
- Topics: django, django-rest-framework, geeksforgeeks, gfg, jwt, jwt-authentication, jwt-token
- Language: Python
- Homepage:
- Size: 13.6 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.