반응형
Jwt data를 decode하는 테스트 코드 작성 중, 아래와 같은 오류가 발생하였음
io.jsonwebtoken.security.SignatureException: JWT signature does not match locally computed signature. JWT validity cannot be asserted and should not be trusted.
오류 원인
- jwt data를 encode할 때 사용한 secret key와, jwt data를 decode할 때 사용한 secret key의 값이 달라서 발생하였다.
해결
- secret key의 값을 동일하게 설정한다.
반응형
'오류' 카테고리의 다른 글
NLTK download SSL: Certificate verify failed (0) | 2023.06.30 |
---|---|
pip subprocess to install build dependencies did not run successfully.│ exit code: 1╰─> See above for output. (0) | 2023.06.30 |
SourceTree] Invalid username or password. (0) | 2023.06.09 |
MacOS] slack 알림 안뜨는 오류 (0) | 2023.06.08 |
MySQL] Unhandled exception: 'ascii' codec can't decode byte (mac) (0) | 2023.06.08 |