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

前端 未结 2 1212
攒了一身酷
攒了一身酷 2020-12-20 09:51

ScriptApp.getService().getUrl() is generating a dev URL. How can I make it generate the exec production URL?

2条回答
  •  南笙
    南笙 (楼主)
    2020-12-20 10:10

    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:

    • Method: projects.deployments.list

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

提交回复
热议问题