0

根据这个http://productforums.google.com/forum/#!topic/apps-script/gGTd0uhh2Kw我不能使用 Session.getUser().getUserLoginId() 来获取用户身份。我怎么知道哪个用户正在使用我的脚本?

4

1 回答 1

1

您可以使用

Session.getActiveUser().getEmail();

要检索信息,只需向您发送一封包含该信息的邮件

MailApp.sendEmail("youemailadress", "Hu? someone is using my scipt!", "this is: "+Session.getActiveUser().getEmail());
于 2013-03-21T13:00:23.093 回答