Overview: Authentication and Authorization Using JWTs
Explore how to build a secure authentication and authorization system in Django using JSON Web Tokens. Gain skills in creating user models, writing serializers, handling API requests with viewsets, and managing token refresh logic to support user registration and login features.
We'll cover the following...
We'll cover the following...
In this chapter, we’ll dive deeper into Django and its architecture. We’ll be working with models, serializers, and viewsets to create an API that can receive HTTP requests as well as return a response. This will be done by building an authentication and authorization system using ...