satya sootarsatyasootar.hashnode.dev·Nov 18, 2024Difference between Access-Token and Refresh-TokenOnce the user authenticates, the server returns two JSON web tokens: an access token and a refresh token. Access Token An Access Token is a type of JSON Web Token (JWT) issued by the server after successful user authentication. It acts as a key for a...Discusscode
JEET MAHAPATRAaccesstoken-refreshtoken.hashnode.dev·Nov 17, 2024Access Token & Refresh Token | Learn in simple wordsLet’s assume, You are a 1st year college student and for this year you want to issue a library card to get a initial entry of your college library. But after that when you get that library card you can easily show that to the librarian and the librar...Discuss·1 likeJavaScript
SOURAV MOHANTYsourav0010.hashnode.dev·Nov 6, 2024Simple Explanation of Access Tokens, Refresh Tokens, and JWTsWhat is Token? Before discussing the concept of access tokens, refresh tokens, and JWT, let's first understand tokens. Consider an airport as an example. Those who have a pass, are employees of the airport, or have a visitor pass are allowed inside t...Discuss·1 likeJWT
KUNTAL MAITYkuntalmaity.hashnode.dev·Nov 5, 2024difference between access token and refresh tokenWhy tokens? Authentication and Authorization are the crucial steps for protecting user data. Hear token based authentication comes into the picture. There are many authentication methodologies are available but took in based authentication is most po...Discussaccess-token
Abhishek Kumar Singhaccess-token-refresh-token-abhi.hashnode.dev·Oct 27, 2024Difference Between Access Token and Refresh TokenAccess tokens and refresh tokens are both part of token-based authentication in modern web applications, especially when using OAuth or JWT-based (JSON Web Token) systems. Here’s a breakdown of each: Access Token Purpose: The access token is a short...Discuss·1 likeJavaScript
AMITfuture-stack.hashnode.dev·Oct 23, 2024How Access and Refresh Tokens Work in User Authentication?In today’s digital landscape, authentication is the backbone of secure web and mobile applications. Whether you’re signing into a social media platform or accessing a cloud service, the system needs to verify your identity and determine what resource...Discussrefresh-token
Merge Simpsonblog.letsdev.me·Oct 21, 2024개념 1. JWT 인증을 사용하는 이유, 리프레시 토큰이 Stateful해야 하는 이유Intro. JWT 인증 방식은 이제 많은 서비스가 메인으로 채택하는 대중적인 인증 방식 중 하나인데요. 사용자의 요청을 가볍고 빠르게 인가할 수 있는 장점이 있어, 분산 환경에서 가장 인기 있는 인증·인가 방식이죠. 하지만 JWT를 지금만큼 대중적으로 채택한 것이 긴 역사는 아닌 만큼, 개발자분들과 소통하거나, 여러 블로그를 탐색하다 보면 JWT에 대한 오개념이 곳곳에 산재해 있었습니다. 이렇게 많은 오해가 산재하는 환경이지만, 많은 사람들이...Discuss·30 likes·234 readsJWT를 아는 당신도, 조금 더 정확하게 다루는 데에 초점을 둘 수 있도록.로그인
Mohnish Kalaimaniaccessandrefresh.hashnode.dev·Sep 30, 2024Difference between Access Token and Refresh TokenAccess TokenRefresh Token Access Token is a token used to authenticate and grant access to resources for the the user.Refresh token are used to obtain a new Access Token. Access Token has a short lifespan.Refresh Token has a longer lifespan than ...Discuss·26 readsWeb Development
Samir Khanalsamir-khanal.hashnode.dev·Sep 25, 2024Understanding the Difference Between Access Tokens and Refresh TokensIntroduction Authentication plays a huge role in today’s modern web application. It makes sure that right user is accessing the secured resources which is crucial to prevent any harm to the user’s information. That’s where tokens come in play, mainly...Discuss·34 readsWeb Development
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...Discuss·72 readsJWT