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

孤者浪人 提交于 2020-05-17 05:44:19

问题


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


回答1:


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.



来源:https://stackoverflow.com/questions/60232532/scriptapp-getservice-geturl-points-to-dev-url-how-can-i-get-it-to-point-to

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!