Reputation: 11
I have a web page deployed using Google Apps Script with access permissions set to "Anyone". However, when I try to access the page, I get an "Access denied" message and cannot access it.
appscript.json
{
"timeZone": "Asia/Tokyo",
"exceptionLogging": "STACKDRIVER",
"runtimeVersion": "V8",
"dependencies": {
"libraries": [
{
"userSymbol": "Parser",
"libraryId": "******",
"version": "8"
}
]
},
"webapp": {
"executeAs": "USER_DEPLOYING",
"access": "ANYONE_ANONYMOUS"
}
}
Environment:
Steps to reproduce:
What I've tried:
What I was expecting:
The web page with "Anyone" access setting should be displayed normally.
What else can I try to resolve this issue?
Upvotes: 0
Views: 53