Skip to content

Commit

Permalink
prints
Browse files Browse the repository at this point in the history
  • Loading branch information
feijooso committed Mar 26, 2024
1 parent e026129 commit 6c7f485
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/service/Users.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ def _get_access_token(self, authorization_code):
"grant_type": "authorization_code",
"redirect_uri": os.environ["GOOGLE_REDIRECT_URI"]
}
print(payload)
response = requests.post(token_url, data=payload)
print(response)
if response.status_code == 200:
return response.json().get("access_token")
else:
Expand Down

0 comments on commit 6c7f485

Please sign in to comment.