Google OAuth 2.0 using Python for GCP BigQuery
问题 I am seeking a code snippet for implementing oAuth 2.0 authentication using python to connect to GCP Big Query service. I am using Google cloud shell to write the python code. But the access token I am receiving bad request. access_token = google.fetch_token(token_url=token_url,client_id=client_id,client_secret=client_secret,authorization_response=redirect_response). Also I need to automate this process so manually pasting the redirect_response needs to be avoided. 回答1: It is recommended that