Browse Source

modify google login api

tomoya 2 years ago
parent
commit
a835197bd5
2 changed files with 3 additions and 3 deletions
  1. 1 1
      backend/app/app/api/api_v1/endpoints/login.py
  2. 2 2
      frontend/src/api.ts

+ 1 - 1
backend/app/app/api/api_v1/endpoints/login.py

@@ -46,7 +46,7 @@ def login_access_token(
 
 @router.post("/login/google/access-token/{access_token}", response_model=schemas.Token)
 def login_access_token(
-    access_token: str, db: Session = Depends(deps.get_db),
+    access_token: str, db: Session = Depends(deps.get_db), 
 ) -> Any:
     CLIENT_ID = "136107811725-n71808u8t465f1afhpe2e5j7mn606nd8.apps.googleusercontent.com"
     idinfo = id_token.verify_oauth2_token(access_token, requests.Request(), CLIENT_ID)

+ 2 - 2
frontend/src/api.ts

@@ -69,6 +69,6 @@ export const api = {
     return axios.get<Video[]>(`${apiUrl}/api/v1/videos/`, authHeaders(token));
   },
   async googleLogin(access_token: string){
-    return axios.post(`${apiUrl}/api/v1/login/google/access-token/${access_token}`, )
+    return axios.post(`${apiUrl}/api/v1/login/google/access-token/${access_token}`)
   },
-};
+};