Skip to content

Commit

Permalink
[BE] HOTFix/#424 validateTokensForReissue 디버깅을 위한 에러코드 추가 (#443)
Browse files Browse the repository at this point in the history
* fix: RefreshToken Payload 추가 및 CORS 완화

* fix: Refresh Token Header 허용

* fix: CORS 재설정 및 sameSite None

* fix: 디버깅을 위한 에러코드 추가

* fix: validateTokensForReissue 디버깅을 위한 에러코드 추가
  • Loading branch information
junpakPark authored Sep 19, 2023
1 parent cf39b5e commit 48c6a52
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public void validateTokensForReissue(String refreshToken, String accessToken) {
if (canReissueAccessToken) {
return;
}
throw new AuthUnauthorizedException(ILLEGAL_TOKEN);
throw new AuthUnauthorizedException(BAD_REQUEST_TOKEN);
}

public void validateTokensForRemoval(String refreshToken, String accessToken) {
Expand Down

0 comments on commit 48c6a52

Please sign in to comment.