shubham yadavforShubham 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...Discuss·11 likes·194 readsJWT
Pritika Mishraforpritika mishra's blogpritika.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...Discuss·4 likes·45 readsiwritecode
José Pablo Ramírez VargasforThe Discipline of Codingwebjose.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...Discuss·2 likes·121 readsJWT DiariesSecurity
Vaibhav DewanganforVAIBZDE 》Vaibhav Dewangan's Blogvaibzde.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...Discuss·26 readsCode, Blog, Repeat: A 50-Day Quest for Back-End MasteryJWT
Pritika Mishraforpritika mishra's blogpritika.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...Discuss·4 likes·45 readsiwritecode
Aryan ShawforAryan Shaw's blogaryanshaw.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...Md Shams Firoz and 1 other are discussing this2 people are discussing thisDiscuss·1 like·201 readsJWT
Chop Codingforchopcodingchopcoding.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 ...Discuss·1 like·125 readsjson parser
José Pablo Ramírez VargasforThe Discipline of Codingwebjose.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...Discuss·2 likes·121 readsJWT DiariesSecurity
Jatin RawatforThe Dev guyjatinrawat.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...Discuss·1 like·81 readsDatabases
shubham yadavforShubham 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...Discuss·11 likes·194 readsJWT
Naman VermaforReact Routing vs Conventional Routingdeveloper20.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...Discuss·1 like·38 readsjsonwebtoken
Ricardo MerchantforKyngcoder'skyngcoder.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...Discuss·129 readsReact