You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Once browser is opened do not proceed but close browser
Wait for timeout to trigger
AttributeError: 'NoneType' object has no attribute 'replace' is raised instead of expected timeout specific error
Code example
flow=InstalledAppFlow.from_client_secrets_file(
client_secrets_file=client_secret_file,
scopes=['https://www.googleapis.com/auth/userinfo.email', 'openid', 'https://www.googleapis.com/auth/userinfo.profile'])
returnflow.run_local_server(
host='localhost',
port=port,
authorization_prompt_message='Please visit this URL: {url}',
success_message='The auth flow is complete; you may close this window.',
open_browser=True,
timeout_seconds=20)
The text was updated successfully, but these errors were encountered:
Environment details
google-auth-oauthlib
version: Version: 1.0.0Steps to reproduce
AttributeError: 'NoneType' object has no attribute 'replace'
is raised instead of expected timeout specific errorCode example
The text was updated successfully, but these errors were encountered: