根据这个http://productforums.google.com/forum/#!topic/apps-script/gGTd0uhh2Kw我不能使用Session.getUser()。getUserLoginId()来获取用户身份。我怎么知道哪个用户当前正在使用我的脚本?
答案 0 :(得分:1)
你可以使用
Session.getActiveUser().getEmail();
并检索信息只需向您发送包含该信息的邮件
MailApp.sendEmail("youemailadress", "Hu? someone is using my scipt!", "this is: "+Session.getActiveUser().getEmail());