ScriptApp.getService().getUrl() points to dev URL. How can I get it to point to exec production URL?

How about this answer? Please think of this as just one of several possible answers.

Issue and workaround:

If you are enabling V8 runtime, in the current stage, it seems that when V8 runtime is enabled, ScriptApp.getService().getUrl() returns the dev URL like https://script.google.com/macros/s/###/dev, and when V8 runtime is disabled, it returns the exec URL like https://script.google.com/macros/s/###/exec. I think that this might be one of bugs for V8.

If you want to directly retrieve the exec URL with enabling V8, as the current workaround, how about retrieving it using the method of projects.deployments.list in Apps Script API? You can test it at “Try this API”. Of course, this can be used with Google Apps Script.

Reference:

If I misunderstood your situation and this was not the direction you want, I apologize.

Leave a Comment