在google sites中显示域用户名

时间:2012-12-31 09:44:59

标签: google-apps-script google-sites

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

到目前为止,这样的尝试都失败了..

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

1 个答案:

答案 0 :(得分:0)

您可以在base class description

的文档中找到

您可以尝试以下

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

也许可以将这些功能放在html service

Working doGet() example