JWT vs Session
Session
store session @ database
horizontal scale is an issue.
compare session_id in cookie & seesion in db.
JWT
no storage @ database
no scaling issue
token send to client -> token send back to server -> validate JWT
Session
Token
Server storage
Yes
No
Scalability
difficult
No issue
Multiple device
problem from cross domains
No issue
Size
small
big
Expired
Easy
difficult
Claim
Claims are statements about an user and additional data.
Refresh Token
Access token
Refresh token
shorter-life
longer-life
resource server
auth server
-
save with higher security
-
use when new access token needed / expire access token
When accessing important features, you need to re-enter password with refresh token.
Last updated
Was this helpful?