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...Discussasp.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 ...DiscussJWT
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·40 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·48 likes·106 readsaccess-token
Mihir Sai Dudekulamihirsaidudekula.hashnode.dev·Jun 13, 2024How JWT Authentication Works: Explained SimplyImplementing authentication in web applications can be a challenging task. Continuously making calls to the database for every request is not only impractical but can also lead to performance bottlenecks. The complexity increases further when you nee...Discuss#JWTAuthentication
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...DiscussJWT