JWT 검증기
JWT 토큰 구조를 검증하고 만료를 확인합니다. 비밀 키 없이 헤더, 페이로드, 알고리즘을 검증합니다.
JWT 검증 참조
JWT 검증 체크리스트
| # | Check | What to verify | Requires Key? |
|---|---|---|---|
| 1 | Structure | Token has exactly 3 dot-separated parts | No |
| 2 | Header JSON | First part decodes to valid JSON | No |
| 3 | Payload JSON | Second part decodes to valid JSON | No |
| 4 | Algorithm | Header contains "alg" field | No |
| 5 | Expiration | exp claim vs current time | No |
| 6 | Not Before | nbf claim vs current time | No |
| 7 | Issuer | iss matches expected issuer | No |
| 8 | Audience | aud matches your app | No |
| 9 | Signature | Cryptographic signature verification | Yes |
일반적인 JWT 오류
| Error | Cause | Fix |
|---|---|---|
| jwt expired | exp claim is in the past | Refresh the token or extend expiry |
| jwt malformed | Token does not have 3 parts | Check token format and encoding |
| invalid signature | Signature does not match | Verify the signing key matches |
| jwt not active | nbf claim is in the future | Wait until the token becomes active |
| invalid algorithm | alg does not match expected | Ensure consistent algorithm configuration |
| invalid audience | aud does not match your app | Check audience claim configuration |
검증 vs 서명 검증
JWT 검증은 구조를 확인합니다. 서명 검증은 키로 서명을 확인합니다. 이 도구는 구조 검증만 수행합니다.
자주 묻는 질문
관련 JWT 도구
이 도구 평가
4.4 / 5 · 89 개 평가
Recommended
CloudflareFree CDN & DDoS protection최신 소식 받기
주간 개발 팁과 새 도구 알림을 받으세요.
스팸 없음. 언제든 구독 해지 가능.
Enjoy these free tools?
☕Buy Me a Coffee