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
flow=Flow.from_client_secrets_file(client_secret_file, scopes=scopes,
redirect_uri='urn:ietf:wg:oauth:2.0:oob')
auth_url, _=flow.authorization_url(prompt='consent')
print('Please go to this URL and finish the authentication flow: {}'.format(auth_url))
code=input('Enter the authorization code: ')
flow.fetch_token(code=code)
credentials=flow.credentials
simply just doesn't work. I'm working on a fix for you using the now suggested google-auth library.
The text was updated successfully, but these errors were encountered:
Google authentication using:
simply just doesn't work. I'm working on a fix for you using the now suggested
google-auth
library.The text was updated successfully, but these errors were encountered: