Arish Ahmadblog.arishahmad.in·Sep 1, 2024Understanding JWTs: The Key to Secure User AuthenticationWhat is JWT? JWT stands for JSON Web Token. It’s a compact, URL-safe token format used to securely transmit information between parties as a JSON object. How Does JWT Work? Think of a JWT as a sealed envelope. This envelope contains some information ...DiscussJWT
Abhishek Choudharydazzlerabhi30800.hashnode.dev·Apr 20, 2024Refresh & Access TokenBefore understanding the what are Refresh & Access Token , first we must understand why do we need them and what they are for ? Refresh Token is a json web token used to generate more access token. Access token are used to access a particular piec...Discussbackend
sanjana kansalsanjana.hashnode.dev·Jul 27, 2023Step-by-Step JWT Authentication Implementation in Python - Part 1In this article, we will explore the concept of JWT authentication and learn how to implement it using PyJWT. Prior knowledge of Django and API building in Django is necessary to understand this article. JWT (JSON Web Token) is a token-based authenti...Discuss·1 like·78 reads#JWTAuthentication