Omkar008 commited on
Commit
a7c9f3e
1 Parent(s): 68bbf2b

Update test.py

Browse files
Files changed (1) hide show
  1. test.py +1 -1
test.py CHANGED
@@ -36,7 +36,7 @@ async def login_google():
36
  }
37
 
38
  @app.post("/auth/google")
39
- async def auth_google(request: Request,code:str):
40
  #This code is basically the authorization code and this authorization code helps us to get the access token with the required scopes that we have set .
41
  #We require the gmail.readonly scopes that requires verification of our application and all.
42
  data = await request.json()
 
36
  }
37
 
38
  @app.post("/auth/google")
39
+ async def auth_google(request: Request):
40
  #This code is basically the authorization code and this authorization code helps us to get the access token with the required scopes that we have set .
41
  #We require the gmail.readonly scopes that requires verification of our application and all.
42
  data = await request.json()