Skip to content

Commit

Permalink
test(fe) #637: redirect url 변경 테스트
Browse files Browse the repository at this point in the history
  • Loading branch information
devbattery committed Dec 11, 2024
1 parent e00cde0 commit 8777ed2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fe/src/components/common/oauthButton/OAuthButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const OAuthButton = () => {
console.log('RedirectAddress', 'https://foodymoody.store' + PATH.GOOGLE);

const GOOGLE_URL = `https://accounts.google.com/o/oauth2/v2/auth?scope=https://www.googleapis.com/auth/userinfo.profile https://www.googleapis.com/auth/userinfo.email&client_id=${VITE_GOOGLE_CLIENT_ID}&response_type=code&redirect_uri=${
isDev ? LOCAL_URL + PATH.GOOGLE : 'https://foodymoody.store' + PATH.GOOGLE
isDev ? LOCAL_URL + '/login/oauth2/code/google' : 'https://foodymoody.store/login/oauth2/code/google'
}&access_type=offline`;

// const GOOGLE_URL = `https://accounts.google.com/o/oauth2/v2/auth?
Expand Down

0 comments on commit 8777ed2

Please sign in to comment.