HOT HEADhothead01th.hashnode.dev·Dec 9, 2024Exposing the Dark Side of JSON Web Tokens (JWT)JSON Web Tokens (JWTs) have become the backbone of modern web authentication, promising secure identity and privilege transfer. JWTs are cryptographically protected tokens transferring identity and privilege information about a user or client. Encode...DiscussJWT
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...Discuss·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...Discuss·110 readsasp.net core
Anuj Acharjeeanujacharjee.hashnode.dev·Sep 30, 2024Authentication“Access Token and Refresh Token are basically JSON Web Tokens (JWT)”. JWTs consist of three parts: Header, Payload, and Signature. Header: Contains metadata (e.g., the algorithm used for signing). Payload: Contains user data or claims (e.g., user I...Discuss·1 likeauthentication
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 ...Discuss·28 readsJWT
Eliud Githukugiteliud.hashnode.dev·Aug 9, 2024Using Data Store to store Jwt Token in native android developmentIntroduction In modern Android development, handling user authentication securely is crucial. JSON Web Tokens (JWT) are a popular method for managing authentication tokens. However, storing these tokens securely is equally important. In this blog, we...DiscussBeginner Developers
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...Discuss·2 likesJWT
Akash Satputeakashblogss.hashnode.dev·Jul 4, 2024Implementing Safe User Login in Node.js Using JWT and MongooseIn the era of web applications, user authentication stands as a cornerstone of security and user experience. Today, we will explore a comprehensive implementation of a login function in a Node.js application, leveraging Mongoose for MongoDB interacti...Discuss·10 likes·44 readsValidation
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...DiscussJWT
AYUSH KUMAR GUPTAayyush08.hashnode.dev·Jun 25, 2024Unlocking the Secrets of Access Tokens and Refresh Tokens: A Beginner's GuideAs beginner Backend or Full Stack Developers, we all encounter authentication during our learning phase, where we come across two crucial terms: 'Access Token' and 'Refresh Token'. What exactly are they? 🤔 What's the difference between the two? 🧐 H...Discuss·50 likes·131 readsaccess-token