Thirsty jsonthirstyjson.hashnode.dev·Nov 9, 2024Intro to JSONThirsty JSON is a versatile online tool designed to simplify working with JSON data for developers. Its user-friendly interface allows for quick JSON formatting, editing, and conversion into other formats like CSV and YAML. This can be especially use...Discussjson
Sai Prasanna Maharanasaimaharana.hashnode.dev·Oct 28, 2024Extracting an Authentication Token Using Selenium1. Importing Necessary Libraries Before running the code, ensure you have the following libraries installed: import os import time import json from selenium import webdriver os: For interacting with the operating system (e.g., file paths). time: F...Discussautomationselenium
Merge Simpsonblog.letsdev.me·Oct 23, 2024개념 2. JWT 액세스 토큰의 생성과 전달, Stateful한 리프레시 토큰의 생성, 전달, 보존이전 글에서 정리에 꽤 힘을 뺐기 때문에, 이번 글에서는 서두와 부연설명을 줄이고 필요한 정보를 담아 전달해 보겠습니다. JWT 액세스 토큰 JWT 액세스 토큰은 인가에 직접 사용되는 토큰이고, stateless 하다는 장점이 있었습니다. 액세스 토큰의 생성 JWT(JSON Web Token)로 생성합니다. 비밀번호 인증 등 자격 검토 후 JWT를 발급합니다. JWT는 헤더, 페이로드, 시그니처 세 영역을 점(.) 기호로 구분한다고 했습니다....Discuss·30 likes·42 readsJWT를 아는 당신도, 조금 더 정확하게 다루는 데에 초점을 둘 수 있도록.JWT
Merge Simpsonblog.letsdev.me·Oct 21, 2024개념 1. JWT 인증을 사용하는 이유, 리프레시 토큰이 Stateful해야 하는 이유Intro. JWT 인증 방식은 이제 많은 서비스가 메인으로 채택하는 대중적인 인증 방식 중 하나인데요. 사용자의 요청을 가볍고 빠르게 인가할 수 있는 장점이 있어, 분산 환경에서 가장 인기 있는 인증·인가 방식이죠. 하지만 JWT를 지금만큼 대중적으로 채택한 것이 긴 역사는 아닌 만큼, 개발자분들과 소통하거나, 여러 블로그를 탐색하다 보면 JWT에 대한 오개념이 곳곳에 산재해 있었습니다. 이렇게 많은 오해가 산재하는 환경이지만, 많은 사람들이...Discuss·30 likes·235 readsJWT를 아는 당신도, 조금 더 정확하게 다루는 데에 초점을 둘 수 있도록.로그인
Sonu Kumarjsonwebtoken.hashnode.dev·Oct 21, 2024JWT (JSON Web Token )What is JWT and Why it is using? JWT stands for the JSON Web Token. It’s a compact way to send data between two parties,usually between our browser and a server, in a safe and verifiable way. JWT is mostly used to make sure you stay logged in as you ...DiscussJSON Web Tokens (JWT)
Shivang Yadavblogs.shivangyadav.me·Oct 16, 2024Decoding JWT: Authentication and Authorization in Node.jsJSON Web Token (JWT) is widely used for handling authentication and authorization in modern web applications. JWT allows secure and compact transmission of information between parties as a JSON object, and this information is verifiable and trusted b...Discuss·1 like·78 readsauthentication
Samir Khanalsamir-khanal.hashnode.dev·Sep 25, 2024Understanding the Difference Between Access Tokens and Refresh TokensIntroduction Authentication plays a huge role in today’s modern web application. It makes sure that right user is accessing the secured resources which is crucial to prevent any harm to the user’s information. That’s where tokens come in play, mainly...Discuss·34 readsWeb Development
J B Sankarlalblog.sankarlal.in·Sep 24, 2024Step-by-Step Guide for Access and Refresh TokensWhenever we set up authentication and authorization using JWT (JSON Web Tokens), it's important to ensure the use of refresh tokens to enhance security and provide continuous access without requiring the user to log in frequently. Authentication vs A...Discuss·72 readsJWT
Anubhav Ghoshanubhaghosh.hashnode.dev·Sep 14, 2024Refresh Token and Access TokenWhy do we need an Access token? Access and refresh tokens were introduced to reduce the number of times users need to log in using their credentials. Access Tokens allow users to access services without repeatedly entering their credentials. They are...Discussrefresh-token
Bhavik Prajapatibhavikprajapati.hashnode.dev·Sep 14, 2024Refresh Tokens in Authentication using Node.js: Benefits and Implementation with CodeIntroduction Authentication is a critical aspect of building secure applications. When dealing with user authentication, especially in modern web applications, JWT (JSON Web Tokens) are often used for managing user sessions. A common pattern in token...DiscussJWT