我有兴趣在 Google Apps 脚本 html 模板上开发整个应用程序。我可以使用 Google Apps for Business 将域映射到应用脚本吗?
问问题
1864 次
2 回答
2
这是一个非常迟到的回应,但是是的,你可以做到这一点!
关键步骤是将 .setXFrameOptionsMode(HtmlService.XFrameOptionsMode.ALLOWALL) 枚举添加到您的 HtmlServe 中,如下所示:
return HtmlService
.createTemplateFromFile('login')
.evaluate()
.setXFrameOptionsMode(HtmlService.XFrameOptionsMode.ALLOWALL);
然后,您可以简单地将您的 Apps 脚本 URL 嵌入到您喜欢的任何网页上。如果您在服务器上启用了 SSL,它甚至支持 SSL。
<iframe src="https://script.google.com/macros/s/xxxxxxxxxxxxxxxxxxxxxx/exec"></iframe>
来源: https ://developers.google.com/apps-script/reference/html/x-frame-options-mode
于 2017-05-30T11:20:36.123 回答
0
我认为最好的解决方案是将您的 Apps 脚本托管在 Google 协作平台页面(可以托管在 [subdomain].your-domain.com)中。
以下是有关 Google 协作平台上的 GAS 小工具的一些信息。
以及您自己的子域上的 Google 协作平台。点击“通过 Google Apps 建立的网站”下拉菜单。
于 2013-03-10T00:48:23.673 回答