diff --git a/src/api/auth/auth.ts b/src/api/auth/auth.ts index 17c4523..57f360c 100644 --- a/src/api/auth/auth.ts +++ b/src/api/auth/auth.ts @@ -7,7 +7,7 @@ export const requestIdtoken = async ( provider: string | undefined, ) => { return await axiosInstance - .get(`/api/v1/auth/${provider}/idToken/local?code=${authorizationCode}`) + .get(`/api/v1/auth/${provider}/idtoken?code=${authorizationCode}`) .then(response => { localStorage.setItem('idtoken', response.data.data.idToken); return response.data.data.idToken;