Skip to content

Commit

Permalink
fix : AccessToken 재발급 API 쿠키에서 추출하도록 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
mingj7235 committed May 22, 2023
1 parent 5cf87b8 commit 252416a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class AuthenticationController {
"""
)
@PostMapping("/retrieve-token")
public ResponseEntity<SuccessResponse> retrieveAccessToken (final @RequestHeader(value = REFRESH_AUTHORIZATION) String refreshToken) {
public ResponseEntity<SuccessResponse> retrieveAccessToken (final @CookieValue(name = REFRESH_AUTHORIZATION) String refreshToken) {

return SuccessResponse
.toResponseEntity(
Expand Down

0 comments on commit 252416a

Please sign in to comment.