Skip to content

Commit

Permalink
fix(be) #637: 하드코딩 방식 복구
Browse files Browse the repository at this point in the history
  • Loading branch information
devbattery committed Dec 11, 2024
1 parent 78841bd commit 40de99c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ private MultiValueMap<String, String> createTokenRequest(String authorizationCod
MultiValueMap<String, String> formData = new LinkedMultiValueMap<>();
formData.add("code", authorizationCode);
formData.add("grant_type", "authorization_code");
formData.add("redirect_uri", "https://foodymoody.store/api/auth/oauth/google"); // 하드코딩
formData.add("redirect_uri", redirectUri); // 하드코딩
formData.add("client_id", clientId);
formData.add("client_secret", clientSecret);
return formData;
Expand Down

0 comments on commit 40de99c

Please sign in to comment.