J B Sankarlalblog.sankarlal.in·Sep 24, 2024Step-by-Step Guide for Access and Refresh TokensWhenever we set up authentication and authorization using JWT (JSON Web Tokens), it's important to ensure the use of refresh tokens to enhance security and provide continuous access without requiring the user to log in frequently. Authentication vs A...92 readsJWT
Adnan Ibrahimadnancodes01.hashnode.dev·May 23, 2024Access and Refresh TokensIntroduction In the digital world, security is crucial, especially when it comes to accessing sensitive information. To keep our data safe while allowing seamless access to applications, we use something called "tokens." Two important types of tokens...10 likesJWT
KrishnaBhagatekasnh86.hashnode.dev·Feb 17, 2024Exploring Tokens: Access Tokens vs. Refresh TokensImagine you are at a fancy party with a treasure vault full of goodies. You need a special key (access token) to unlock each treasure chest (resource) for a limited time. But what if that key expires? Don't worry, you have a master key (refresh token...token
Durlov Phukondrlov.hashnode.dev·Feb 13, 2024Access Token and Refresh TokenMost of the beginners is confused about many topics when they are in the coding journey. and backend development is the most interesting and sometime difficult. when we enter into backend development some basic concept is required like basic networki...backend
Vikas singh varmavikas369.hashnode.dev·Dec 27, 2023What is the difference between refresh and access Token?Access Token: A key that allows a user to access protected resources on a server, typically representing the user's identity and permissions. Refresh Token: A key that can be used to obtain a new access token, extending the duration of access to reso...10 likesJavaScript
Nikhil Kumar0nikhilkumar.hashnode.dev·Dec 23, 2023Access Token V/S Refresh TokenJWT JWT Stands for Json Web Token, it used for to set the cookies basically performing the CRUD (Create, Read, Update, Delete) operations. Difference between Access & Refresh Token Basically Access token and refresh token both are set in the cookies...refreshtoken
Sanchit Khuranageniuslearner.hashnode.dev·Feb 15, 2023What are refresh tokens?In modern web applications, it is common for users to need to authenticate themselves in order to access various features and data. This authentication process usually involves the use of access tokens, which are short-lived tokens that grant a user ...55 readsrefreshtoken
Rahul Chaudharyrahul6075.hashnode.dev·Feb 14, 2023JWT Authentication with NodeJS and MySQLConcept: Using Refresh Token-based Authentication with JWT Folder Structure First Step: Environment Steup install required software (NodeJs, MySql or MongoDB, npm, git etc. Create a folder and inside the folder initialize the npm to create a node ...2 likes·556 readsauthentication
Jaydeep Deyjaydeepdey03.hashnode.dev·Dec 5, 2022Handling authentication in NodeJS using JWT Tokens 🚀Introduction The process of authenticating a user's identity involves obtaining credentials and utilizing those credentials to verify the user's identity. We all authenticate into several services in our day-to-day life, for example logging into pc, ...1 like·335 readsrefreshtoken