We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06ae763 commit 77b8d76Copy full SHA for 77b8d76
api/src/main/java/com/mbtips/user/controller/ApiLoginController.java
@@ -41,7 +41,7 @@ public class ApiLoginController {
41
42
@GetMapping("/authorize-url")
43
@Operation(summary = "카카오 로그인 인증 URL", description = "카카오 로그인 인증 URL 반환")
44
- public ApiResponse<String> getKakaoLoginUrl(@Parameter String redirectUrl) {
+ public ApiResponse<String> getKakaoLoginUrl(@RequestParam(required = false) String redirectUrl) {
45
if (redirectUrl == null) {
46
redirectUrl = kakaoProperties.redirectUrl();
47
}
0 commit comments