Skip to content

Commit

Permalink
⚽Refactor #42: 토큰 재발급 method 파라미터 수정
Browse files Browse the repository at this point in the history
before: String refreshToken
after: @RequestParam String refreshToken
  • Loading branch information
Juhyeok0202 authored Jul 30, 2023
1 parent f080e0a commit 336be18
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public ResponseEntity<?> userLogin(@RequestParam("accessToken") String accessTok
}

@PostMapping("/user/reissuance")
public ResponseEntity<?> reiussnaceToken(String refreshToken) {
public ResponseEntity<?> reiussnaceToken(@RequestParam("refreshToken") String refreshToken) {
try {

//토큰 재발급
Expand Down

0 comments on commit 336be18

Please sign in to comment.