SNSachin Nandanwarinazureguru.net·19h ago · 11 min readBuild AI Agents with Microsoft Agent Framework to Access Azure Services Using Entra OAuthImagine a scenario where you have an AI agent that needs to access Azure services, such as Azure Storage. Simply granting the agent open and unrestricted access to Azure resources is not an option. Do00
SJSamyak Jainintherepository.hashnode.dev·Jul 23 · 5 min readAccess and Refresh TokensImagine logging into your favorite app every 15 minutes because your session expired. That would be frustrating. On the other hand, keeping users logged in forever would be a security nightmare. Moder00
SKshivam kumarinmindofmine.hashnode.dev·Jun 22 · 4 min readAccess Tokens vs Refresh Tokens: The Missing Piece Most JWT Tutorials Don't ExplainWhen I first learned JWT authentication in MERN, I understood how to generate a token after login. What I didn't understand was why we need both an Access Token and a Refresh Token. If a user is alrea00
Ccodewithdivyaincodewithdivya.hashnode.dev·May 17 · 6 min readUnderstanding Access Tokens and Refresh TokensModern applications like Instagram, Gmail, Netflix, and banking apps need secure authentication systems. But users also expect a smooth experience without logging in repeatedly. This is where: Access00
DDivakarindivakar29.hashnode.dev·May 4 · 3 min readSessions VS JWT VS Cookies - Authentication ApproachesAuthentication is a very important module of any product/application. Whenever a MVP is built the first thing it should have is authentication service. Lets understand what is Authentication and how t00
AAtulinsyntax-blog.hashnode.dev·Mar 29 · 2 min readWhat are the Access Token and the Refresh Token ? How it work in Authentication In every Authentication token is very important component because using these token Authentication is possible and make user logged-in successfully. Whenever a user login with login details server gen00
ACArpan Chakrabortyinarpan-dev.hashnode.dev·Mar 7 · 3 min readUnderstanding Access Tokens and Refresh Tokens in Web ApplicationsModern web applications rely on tokens to manage authentication and authorization securely. Tokens are essentially pieces of encoded information that allow users to access the resources, databases, an00
SCShyam Choudharyinshyk.hashnode.dev·Feb 3 · 1 min readAccess and Refresh TokenaccessToken is short-lived and is used to access protected APIs.It is sent with every request to prove that the user is authenticated Usually, the access token is stored in an httpOnly cookie, so JavaScript cannot read it.The browser automatically se...00
VCVikas Chauhaninserver-tokens.hashnode.dev·Jan 24 · 1 min readDifference between Access Token and Refresh Tokenhey guys.. today we are discussing about types of tokens which is used in authentication for an application. majorly, there are two types of tokens which are used for authentication and authorization of a user in a particular website.1. Access Token2...00
AKAbhishek Kumarinaccess-token-vs-refresh-token-backend.hashnode.dev·Dec 24, 2025 · 1 min readAccess Token v/s Refresh Token backendAccess Token Access Token is a Short-lived used to access protected APIs. It send every API request and Short expiry time(e.g., 5-10 minutes). It usually stored in memory or httpOnly cookie. Access Token = Entry Slip You Show it every time you enter...00