WAI
Status Update
Comments
jp...@google.com <jp...@google.com> #2
Generated Metadata
- Summary: The Apps Script application is not working as expected. The first page works, but the second page does not. It is difficult to determine the root cause without additional information.
- Tags:
Additional resources:
https://developers.google.com/apps-script/guides/support/troubleshooting https://developers.google.com/apps-script/support https://stackoverflow.com/.../how-to-debug-or-view-logs-in-google-app-scr... https://stackoverflow.com/.../appscript-webapp-hyperlink-not-working-the-... https://stackoverflow.com/.../serve-separate-html-pages-google-apps-script-...
You can
bl...@google.com <bl...@google.com> #3
Automated by Blunderbuss job workspace-devrel-public-issue-tracker-blunderbuss-autoassigner for config assign for component 191640.
jp...@google.com <jp...@google.com> #4
I have reported this to the engineering team and future updates will be shared here. Thank you for your patience.
jp...@google.com <jp...@google.com> #5
I am marking this issue as FIXED
as the internally reported issue has been marked as FIXED
. Please note that there may be a delay in rolling this out to production. Thank you for your patience and please comment here if the issue remains.
jp...@google.com <jp...@google.com> #6
Hi Bruce, because they are separates scopes, you need to make sure the drive.readonly
is also authorized explicitly.
Description
Before opening a new issue, please search for other related issues , click the ★ to subscribe to updates, and click
+1
to vote.Description
if you have drive authorized, but you only really need drive.readonly, a test for required scope drive.readonly fails. Perhaps this is the intended behavoir ? It seems to me that a drive auth should pass a drive.readonly requirement test?
Code
Output
Exception: Scopes passed to ScriptApp.requireScopes should be a subset of required scopes. Invalid scopes:https://www.googleapis.com/auth/drive.readonly .
Required scopes: (https://www.googleapis.com/auth/script.external_request && https://www.googleapis.com/auth/drive )
Steps
"oauthScopes": [ "https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/script.external_request" ],