Locally, I'm able to grant a GAE project access to Drive/Sheets so a Python script accessing Bigquery can access data in Sheets.
I did this by running:
gcloud auth application-default login --scopes=openid,https://www.googleapis.com/auth/userinfo.email,https://www.googleapis.com/auth/cloud-platform,https://www.googleapis.com/auth/drive,https://www.googleapis.com/auth/bigquery
When my code runs in the cloud, I get
google.api_core.exceptions.Forbidden 403 Access Denied: BigQuery BigQuery: Permission denied while getting Drive credentials.
How do I grant the default credentials in Google Cloud access to Drive/Sheets?
Thanks
You can use the app_engine module in
google.auth
. This solution requires you to have enabled bundled API for Python 3 becausegoogle.auth.app_engine
makes use ofapp_identity
which is a bundled API service. A call is also made tomemcache bundled API
Sample code to list files in Google Drive is as follows (I tested this in Production and it works). Part of this code is taken from Google's sample found here