Menu

#Jwt

22 posts

Feed·
20 of 22 posts
Web Authentication Best Practices 2026: JWT, OAuth 2.1, Passkeys
🖼️
0

Web Authentication Best Practices 2026: JWT, OAuth 2.1, Passkeys

DEV Community·丁久·22 days ago
#zMrARYXI

Production-ready auth guide: JWT vs session tokens, OAuth 2.1 flows, WebAuthn/Passkeys implementation, refresh token rotation, CSRF protection, and RBAC patterns. Code examples in Node.js and Python.

15s
Read More
Sessions vs JWT vs Cookies: Understanding Authentication Approaches
🖼️
0

Sessions vs JWT vs Cookies: Understanding Authentication Approaches

DEV Community·Pratham·22 days ago
#VjtpWymk
#key#jwt#part#how#session#server

Three terms that get mixed up constantly — and a clear guide to what each one actually does. When...

15s
Read More
Apple ASC API: Real JWT Auth + V1/V2 Path Quirks (2026 Edition)
🖼️
0

Apple ASC API: Real JWT Auth + V1/V2 Path Quirks (2026 Edition)

DEV Community·孫昊·26 days ago
#TVIV4d1D
#jwt#tester#ios#asc#self#fullscreen

TL;DR: 4 indie iOS apps, 600+ ASC API calls in 60 days. Here's the JWT auth code, the V1/V2 path...

15s
Read More
Part 3 — Inside the Auth Service: From Token Validator to Policy Decision Point
🖼️
0

Part 3 — Inside the Auth Service: From Token Validator to Policy Decision Point

DEV Community·Akarshan Gandotra·28 days ago
#lYkzQmR7
#one#go#jwt#service#auth#token

Most auth services start simple — verify the token, return 200 or 401. Then requirements accumulate....

15s
Read More
How EdDSA JWTs Solve the Agent Credential Problem
🖼️
0

How EdDSA JWTs Solve the Agent Credential Problem

DEV Community·Pico·29 days ago
#31OCAlK5
#agents#security#jwt#agent#token#harness

If your harness lives inside the same sandbox as the user code, every credential the harness holds belongs to the user code too. The fix isn't a new protocol.…

15s
Read More
We rotated our JWKS without overlap. Here is the 4-minute window that broke prod.
🖼️
0

We rotated our JWKS without overlap. Here is the 4-minute window that broke prod.

DEV Community·Blue Hills·29 days ago
#aZxTOMBW
#jwt#jwks#cache#rotation#issuer#overlap

An incident narrative about a 4-minute production outage caused by a JWKS rotation with insufficient overlap. The postmortem, the fix, and the CI check that catches it before deploy.

15s
Read More
JWT verification in production: an 8-check field guide
🖼️
0

JWT verification in production: an 8-check field guide

DEV Community·Blue Hills·29 days ago
#maSWw6eI
#jwt#oidc#security#deved#token#issuer

The eight checks every production JWT verifier must do, what each one prevents, and structured error codes for each failure mode. A reference doc for backend and identity teams.

15s
Read More
Three JWT bugs that ship to prod silently — and the 5-line CI test that catches them
🖼️
0

Three JWT bugs that ship to prod silently — and the 5-line CI test that catches them

DEV Community·Keynes Paul·about 1 month ago
#URpX13no
#bug#jwt#oidc#devsecops#jwks#token

Three concrete failure modes that take down OIDC in production: JWKS rotation without overlap, wrong audience claims, and issuer config drift.…

15s
Read More
How to decode and debug a JWT without installing anything
🖼️
0

How to decode and debug a JWT without installing anything

DEV Community·William Andrews·about 1 month ago
#yAtqvISD

Read any JWT's contents, understand every standard claim, and diagnose the most common auth errors — expired tokens, audience mismatches, wrong algorithms — from the decoded payload alone.

15s
Read More