Skip to content

Commit eeb2c7b

Browse files
committed
adding login
1 parent 3ffaeae commit eeb2c7b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

functions-python/operations_api/src/middleware/request_context_oauth2.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ def validate_token_with_google(token: str, google_client_id: str) -> dict:
4141
HTTPException: 401, If the token is invalid or the audience is not the expected client.
4242
HTTPException: 500, If the token validation fails.
4343
"""
44+
logging.info(f"Validating token with Google: {token}")
4445
try:
4546
response = get_tokeninfo_response(token)
4647
except Exception as e:

0 commit comments

Comments
 (0)