gpt4 book ai didi

google-apps-script - Google Apps脚本-获取用户的电子邮件地址

转载 作者:行者123 更新时间:2023-12-01 13:35:12 24 4
gpt4 key购买 nike

我有一个在Google网站上运行的Google Apps脚本项目。该网站要求用户登录,并且仅向该G-suite域中的用户开放。

我拥有的脚本用于允许用户进行投票,进入发言者队列以及执行其他一些任务。

目前,后台中的所有功能都可以以“我”的身份正常运行,我更喜欢,但是我需要知道运行脚本的用户的电子邮件地址(查看Google网站)。
在以我自己运行实际脚本的同时,有什么办法让我获得查看运行脚本页面的已登录用户的电子邮件地址?

如果没有,我可以让一个脚本作为用户运行,然后调用另一个像我一样运行的脚本吗?

最佳答案

您是否尝试过记录这些? https://developers.google.com/apps-script/reference/base/session#getActiveUser()

 // Log the email address of the user under whose authority the script is running.
var email = Session.getEffectiveUser().getEmail();
Logger.log(email);



 // Log the email address of the person running the script.
var email = Session.getActiveUser().getEmail();
Logger.log(email);

关于google-apps-script - Google Apps脚本-获取用户的电子邮件地址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43848448/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com