使用Google Apps脚本设置自定义Cookie

时间:2012-09-13 23:36:47

标签: google-apps-script google-sites

是否可以通过Google网站中嵌入的Google Apps脚本小工具设置自定义Cookie。我一直在尝试使用HtmlService类(通过html文件中的脚本中的document.coookie)但它似乎没有生成cookie。我认为这必须是设计(即Caja卫生处理)。还有另一种方式吗?

由于

2 个答案:

答案 0 :(得分:2)

根据设计,这是不可能的,但你不应该这样做;您可以在UserProperties中存储有关当前用户的信息。

答案 1 :(得分:0)

如果您使用iframe选项,则实际上可以这样:

function doGet(e) {
    return HtmlService.createHtmlOutputFromFile("index.html")
                .setSandboxMode(HtmlService.SandboxMode.IFRAME);
}
// after that you may use (On "index.html"):
// document.cookie = "cookieName=1234";
最好的问候。