Smitaccess-token-and-refresh-token-in-jwt.hashnode.dev·Dec 13, 2024Understanding JWT Access and Refresh TokensIf you've ever logged into a website and remained signed in, you've likely benefited from something called tokens, specifically JWT (JSON Web Token) access and refresh tokens. Let's break it down in simple terms. What is a JWT? A JWT is a compact, se...backend developments
Shalon N. Ngiginjeri-ngigi.hashnode.dev·Nov 28, 2024Auth 101: Token Based Authentication💡 This is a stack agnostic strategy that can be implemented in a number of frameworks and languages. I, however, might reference ReactJS (client) and NodeJS (server). Overview There are a number of ways to implement secure authentication and autho...1 like·64 readsJWT token,JSON Web,Token,Token authentication,Access token,JSON token,JWT security,JWT authentication,Token-based authentication,JWT decoding,JWT implementation
Saruf Ratulsaruf.hashnode.dev·Oct 7, 2024ASP.NET 8 - Authentication and Authorization in 7 stepsIntroduction In this tutorial, you will learn how to develop an API for user permission-based authentication and authorization. In addition, the Clean Architecture, Unit of Work, and Mediator patterns will be used. Tools C# .NET8 Visual Studio 20...110 readsasp.net core
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 ...28 readsJWT
Lokendra Pandeyauthenticationjwt.hashnode.dev·Aug 4, 2024Here’s a blog post on understanding JWT authentication using the provided backend code. You can adjust the tone and details to match your preferred sIn modern web applications, security is crucial. One widely used method for managing authentication is JSON Web Tokens (JWT). In this blog, we’ll explore JWT authentication using a practical example—our blog application backend. What is JWT? JSON Web...2 likesJWT
Rohan Shrivastavarohanblogs.hashnode.dev·Jun 28, 2024Tokenize and Secure: A Deep Dive into JWTs for Node.jsIn today's digital world, security is a top priority for any web application. One of the most popular methods for securing APIs is using JSON Web Tokens (JWT). In this blog, we'll explore JWT token authentication in Node.js, including how to generate...JWT
Rohan Shrivastavarohanblogs.hashnode.dev·Jun 13, 2024JWT Authentication: The Secret to Secure Node.js ApplicationsIntroduction In the ever-evolving world of web development, securing applications is a top priority. JSON Web Tokens (JWT) have become a popular method for handling authentication. But what makes JWT so special, and why should you consider using i...JWT
surender meenasurender.hashnode.dev·May 29, 2024Access Tokens and Refresh Tokens an OverviewWhenever you want to login into some website you need get authenticated, means you should be an authorized user of that website/web App. For those Authentication and Authorization these tokens are used. You will learn more about it in a minute. Just ...token
Usman Aliusmanali.hashnode.dev·May 7, 2024Access Token V/S Refresh TokenBoth access and refresh tokens are generated from the backend when a user successfully login into the system. These tokens are then sent to the frontend and securely added to cookies, ensuring they are only readable and cannot be modified from the fr...access-token
ASHUTOSH UPADHYAYashutoshup.hashnode.dev·Mar 17, 2024Demystifying JWT TokensIn today's digital landscape, where security is paramount, implementing robust authentication mechanisms is crucial. One such method gaining popularity is JSON Web Tokens (JWT). JWT offers a secure way to transmit information between parties as a JSO...2 likesJWT