中島建人
中島建人

Reputation: 11

"Access denied" when accessing Google Apps Script deployed web page, even with "Anyone" access setting

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:

  1. Create a web app in Google Apps Script and deploy it with access set to "Anyone".
  2. Access the deployed URL from the browsers in the above environment.

What I've tried:

What I was expecting:

The web page with "Anyone" access setting should be displayed normally.

Question

What else can I try to resolve this issue?

Upvotes: 0

Views: 53

Answers (0)

Related Questions