Fish Touching🐟🎣

JWT

Jun 9, 2023

# What

JWTs contain encoded JSON objects, including a set of claims, and are signed using a cryptographic algorithm to ensure that the claims cannot be altered after the token is issued.

# How

A JWT consists of three parts: header, payload, and signature, separated by dots

# Why