DevToolBox무료
블로그

JWT 검증기

JWT 토큰 구조를 검증하고 만료를 확인합니다. 비밀 키 없이 헤더, 페이로드, 알고리즘을 검증합니다.

JWT 검증 참조

JWT 검증 체크리스트

#CheckWhat to verifyRequires Key?
1StructureToken has exactly 3 dot-separated partsNo
2Header JSONFirst part decodes to valid JSONNo
3Payload JSONSecond part decodes to valid JSONNo
4AlgorithmHeader contains "alg" fieldNo
5Expirationexp claim vs current timeNo
6Not Beforenbf claim vs current timeNo
7Issueriss matches expected issuerNo
8Audienceaud matches your appNo
9SignatureCryptographic signature verificationYes

일반적인 JWT 오류

ErrorCauseFix
jwt expiredexp claim is in the pastRefresh the token or extend expiry
jwt malformedToken does not have 3 partsCheck token format and encoding
invalid signatureSignature does not matchVerify the signing key matches
jwt not activenbf claim is in the futureWait until the token becomes active
invalid algorithmalg does not match expectedEnsure consistent algorithm configuration
invalid audienceaud does not match your appCheck audience claim configuration

검증 vs 서명 검증

JWT 검증은 구조를 확인합니다. 서명 검증은 키로 서명을 확인합니다. 이 도구는 구조 검증만 수행합니다.

자주 묻는 질문

비밀 키 없이 JWT를 검증할 수 있나요?
구조는 검증할 수 있습니다. 서명 검증에는 비밀 키 또는 공개 키가 필요합니다.
JWT가 만료되었는지 어떻게 확인하나요?
페이로드의 "exp" 클레임을 확인하세요. 이 검증기가 자동으로 확인합니다.
JWT 검증과 서명 검증의 차이점은?
검증은 형식과 구조를 확인합니다. 서명 검증은 키로 서명을 암호학적으로 확인합니다.

관련 JWT 도구

𝕏 Twitterin LinkedIn

이 도구 평가

4.4 / 5 · 89 개 평가

최신 소식 받기

주간 개발 팁과 새 도구 알림을 받으세요.

스팸 없음. 언제든 구독 해지 가능.

Enjoy these free tools?

Buy Me a Coffee