Skip to content

Commit

Permalink
fix: 카카오 redirect_url -> redirect_uri
Browse files Browse the repository at this point in the history
  • Loading branch information
shin-mallang committed Jul 26, 2023
1 parent 1f306c4 commit 6836ed6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public String provide() {
.fromUriString("https://kauth.kakao.com/oauth/authorize")
.queryParam("response_type", "code")
.queryParam("client_id", kakaoOauthConfig.clientId())
.queryParam("redirect_url", kakaoOauthConfig.redirectUri())
.queryParam("redirect_uri", kakaoOauthConfig.redirectUri())
.queryParam("scope", String.join(",", kakaoOauthConfig.scope()))
.toUriString();
}
Expand Down

0 comments on commit 6836ed6

Please sign in to comment.