这可能是非常基本的,但我想创建一个将welcome to ...google domain username
在谷歌网站上显示的网络应用程序脚本。
到目前为止,诸如此类的尝试都失败了。
// The code below will display the email address of the person running the script
Browser.msgBox(Session.getActiveUser().getEmail());
这可能是非常基本的,但我想创建一个将welcome to ...google domain username
在谷歌网站上显示的网络应用程序脚本。
到目前为止,诸如此类的尝试都失败了。
// The code below will display the email address of the person running the script
Browser.msgBox(Session.getActiveUser().getEmail());
您可以在基类描述的文档中找到它
你可以试试以下
app.add(app.createLabel('Active user login id:' + Session.getActiveUser().getEmail()));
app.add(app.createLabel('Efective user login id:' + Session.getEffectiveUser().getEmail()));
也许是把这些功能放在html 服务中的想法。