### Configure Apps Script OAuth Scopes Source: https://github.com/samber/oss-kpi/blob/main/README.md Specify the necessary OAuth scopes for your Apps Script project to interact with Google Sheets and Google Analytics. Ensure these scopes are added to your appsscript.json manifest file. ```json { "timeZone": "America/New_York", "oauthScopes": [ "https://www.googleapis.com/auth/spreadsheets.currentonly", "https://www.googleapis.com/auth/analytics.readonly", "https://www.googleapis.com/auth/script.external_request" ], "exceptionLogging": "STACKDRIVER", "runtimeVersion": "V8" } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.