cheeriogs icon indicating copy to clipboard operation
cheeriogs copied to clipboard

google permissions

Open bgbruno opened this issue 3 years ago • 1 comments

issue it wants all permissions to manipulate with all "gdrive sheets"

solution change permission to "manipulate only with current document" https://developers.google.com/apps-script/add-ons/concepts/editor-scopes#setting_explicit_scopes

{
  ...
  "oauthScopes": [
    "https://www.googleapis.com/auth/script.container.ui",
    "https://www.googleapis.com/auth/spreadsheets.currentonly"
  ],
  ...
}

bgbruno avatar Jun 16 '22 11:06 bgbruno

What functions of cheeriogs are you trying to restrict with that "https://www.googleapis.com/auth/script.container.ui" oauthScope?

reedv avatar Oct 18 '23 07:10 reedv