ashish prakash Singhashish459.hashnode.dev·Sep 4, 2024A Beginner's Guide to Tokens and Their UsesImagine you need to enter a secure building. To do this, you need a special key, which is an access token. This token lets you enter the building and access certain rooms and areas, but it is only valid for a limited time before it expires. To avoid ...1 likeaccess-token
Pushkar Singh Kanwalwn.hashnode.dev·Jun 7, 2024The Role of Access and Refresh Tokens in Backend AuthenticationAccess Token: Short lived (1d). It allows a user to stay logged in for a short duration. If the user gets logged out, they need to re-login. Refresh Token: Long lived. It helps to trigger an end-point or to obtain a new Access Token. But after some r...BackendSecurity