What is JWT? #3624
-
|
What is JWT? |
Beta Was this translation helpful? Give feedback.
Answered by
NadeeshaMedagama
Jun 28, 2026
Replies: 1 comment
-
|
JWT (JSON Web Token) is a compact token used for authentication. Instead of storing sessions on the server, the server sends a signed token to the client. The client includes the token in future requests. JWT Structure Payload Signature Example xxxxx.yyyyy.zzzzz |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
janedoe2026
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
JWT (JSON Web Token) is a compact token used for authentication.
Instead of storing sessions on the server, the server sends a signed token to the client.
The client includes the token in future requests.
JWT Structure
Header
Payload
Signature
Example
xxxxx.yyyyy.zzzzz