shubham yadavshubhamyadav.hashnode.net·Jul 14, 2022JWT (JSON Web Token)What JWT is used for? A JWT is used for authorisation, authorisation is making sure that the user that sends a request to your server is the same user that actually logged in during the authentication process. it's authorizing that a user is an acces...11 likes·194 readsJWT
Pritika Mishrapritika.hashnode.net·Jan 26, 2023What is JSON Web Token?Introduction to JSON Web Token (JWT) JWT or JSON web token is the most popular method to identify an authenticated user. The process of authentication typically consists of the user providing a username and password to the application, which then sen...4 likes·45 readsiwritecode
José Pablo Ramírez Vargaswebjose.hashnode.net·Dec 11, 2022Invalidating JSON Web Tokens (JWT) the Right WayHeredia, Costa Rica, 2022-12-10 Series: JWT Diaries, Article 1 So it came to my attention that many people don't know this way of invalidating JWT's. It seems that most people believe the only approach is to blacklist JWT's. It is not. In fact, this...2 likes·121 readsJWT DiariesSecurity
Vaibhav Dewanganvaibzde.hashnode.net·Feb 4, 2023#Day46 - Implementing JWT (JSON Web Tokens) in NodeJSWelcome to the 46th day of our "Code, Blog, Repeat: A 50-Day Quest for Back-End Mastery" series! Today, we'll be diving into the world of JSON Web Tokens (JWT) and how to implement them in NodeJS. JWT is a compact and secure means of transmitting inf...26 readsCode, Blog, Repeat: A 50-Day Quest for Back-End MasteryJWT
Pritika Mishrapritika.hashnode.net·Jan 26, 2023What is JSON Web Token?Introduction to JSON Web Token (JWT) JWT or JSON web token is the most popular method to identify an authenticated user. The process of authentication typically consists of the user providing a username and password to the application, which then sen...4 likes·45 readsiwritecode
Aryan Shawaryanshaw.hashnode.net·Jan 24, 2023JWT Token Rotation and Reuse DetectionLet's consider the user authentication system as a base to explain the token rotation and reuse detection feature. What happens on a successful login? On successful login, both access and refresh tokens are generated Access Token: Last for a very sho...1 like·201 readsJWT
Chop Codingchopcoding.hashnode.net·Dec 27, 2022Converting JSON to CSV with PythonJSON (JavaScript Object Notation) is a popular data format used for storing data in a structured manner. CSV (Comma Separated Values) is a simple file format used to store tabular data, such as a spreadsheet or database. If you have data stored in a ...1 like·125 readsjson parser
José Pablo Ramírez Vargaswebjose.hashnode.net·Dec 11, 2022Invalidating JSON Web Tokens (JWT) the Right WayHeredia, Costa Rica, 2022-12-10 Series: JWT Diaries, Article 1 So it came to my attention that many people don't know this way of invalidating JWT's. It seems that most people believe the only approach is to blacklist JWT's. It is not. In fact, this...2 likes·121 readsJWT DiariesSecurity
Jatin Rawatjatinrawat.hashnode.net·Jul 28, 2022What are JWT(Json Web Tokens)?What are JWT(Json Web Tokens)? Pronounced as jot(JWT) It is a means of transferring information between parties using JSON object. It consist of three parts separated by dot(.) Header.payload.signature like xxxx.yyyy.zzzz a typical JWT look like...1 like·81 readsDatabases
shubham yadavshubhamyadav.hashnode.net·Jul 14, 2022JWT (JSON Web Token)What JWT is used for? A JWT is used for authorisation, authorisation is making sure that the user that sends a request to your server is the same user that actually logged in during the authentication process. it's authorizing that a user is an acces...11 likes·194 readsJWT
Naman Vermadeveloper20.hashnode.net·Jul 1, 2022Using JSON Web Tokens for authentication in NodeJSWhen we are creating a website that requires user authentication and authorization and then only show the protected data to the user there are several ways to do that. 1) Local Storage 2) Session Storage 3) HttpOnly Cookies Firstly we have to create...1 like·38 readsjsonwebtoken
Ricardo Merchantkyngcoder.hashnode.net·Jun 13, 2022How to implement Authentication on a websitePrerequisite: To follow along with this article, you are gonna need to have the following below but if you don't, feel free still enjoy. Basics of React.JS Knowledge of Node.js and Express Mongo Db Technologies included in this tutorial: Axios Jso...129 readsReact