Skip to content

Commit

Permalink
Fix: /auth/v1/login/oauth2/token api에서 GetMapping을 PostMapping으로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
LeeJae-H committed Jul 29, 2024
1 parent 3e76287 commit 0e63c0b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public ResponseEntity<ApiResult<Boolean>> logout(@AuthUser Long userId) {
@EnumResponse(ResponseCode.AppleOauthJwtValueInvalid),
@EnumResponse(ResponseCode.AppleOauthPublicKeyInvalid),
})
@GetMapping("/login/oauth2/token")
@PostMapping("/login/oauth2/token")
@Logging(item = LogItem.OAUTH_APP, action = LogAction.LOGIN, requester = LogRequester.ANONYMOUS)
public ResponseEntity<ApiResult<OauthJwtResponse>> loginOrSignUpWithOAuthToken(
@RequestBody @Valid OauthSignRequestDto oauthSignRequestDto) {
Expand Down

0 comments on commit 0e63c0b

Please sign in to comment.