Home > OS >  How to give users access to app script managed by a GCP Project
How to give users access to app script managed by a GCP Project

Time:04-01

I have an app script linked to a spreadsheet that has a few functions to automate some processes for users. I recently updated the project to be linked to a standard GCP project I created so I could create OAuth credentials for an unrelated process in this script. However, now when users go to run the functions, they get a 403. Is there a place in the GCP console where I can give them access? I am not using any OAuth credentials for these functions. Just the standard app script interactions with the Google Sheet.

CodePudding user response:

I think when you move to GCP you are required to use OAuth and they have to enter their credentials again. Found in the docs.

CodePudding user response:

You have to configure the OAuth Consent Screen as is explained in the official docs about link a Google Apps Script project to a standard Google Cloud Project --> https://developers.google.com/apps-script/guides/cloud-platform-projects

  • Related