Home > Blockchain >  I have a problem about the GoogleAppScript API deployment
I have a problem about the GoogleAppScript API deployment

Time:09-05

I'm creating a version first. I create a project deployment from the https://script.googleapis.com/v1/projects/xxxx/deployments to the version I created, but it does not give the EXEC URL.

If I created a deployment manually in the project, then it gives a version-specific EXEC URL in all the versions I created with the API. How can I get EXEC URL with just API without creating it manually.

CodePudding user response:

Enter the following values in the manifest file.

{
  "timeZone": "America/New_York",
  "dependencies": {
  },
  "webapp": {
    "access": "MYSELF",
    "executeAs": "USER_DEPLOYING"
  },
  "exceptionLogging": "STACKDRIVER"
}

CodePudding user response:

Not all the Google Apps Script deployments have an exec URL, it is created when creating a new deployment as web application.

Resources

  • Related