Static URL for Google Apps script?
11:59 05 May 2026

Although each project has a name, Google Apps scripts use an automatically generated URL to make them available via the internet. This URL changes with each iteration of the code. Meanwhile a schedule can be set for a project to always run the "head" version of the code rather than a specific instance.

I have a service which will require frequent updates - is there a way (without using a third-party redirection) I can expose the current (or an easily changed explicit version) of the code at a static location?

(the script only uses GET, so something which uses HTTP redirection would be fine)

google-apps-script