0

这可能是非常基本的,但我想创建一个将welcome to ...google domain username在谷歌网站上显示的网络应用程序脚本。

到目前为止,诸如此类的尝试都失败了。

// The code below will display the email address of the person running the script
Browser.msgBox(Session.getActiveUser().getEmail());
4

1 回答 1

0

您可以在基类描述的文档中找到它

你可以试试以下

app.add(app.createLabel('Active user login id:' +  Session.getActiveUser().getEmail()));
app.add(app.createLabel('Efective user login id:' +  Session.getEffectiveUser().getEmail()));

也许是把这些功能放在html 服务中的想法。

工作 doGet() 示例

于 2013-01-11T17:48:06.230 回答