是否可以禁用 G Suite 成员的客户端身份验证(绑定 google sheet 脚本)
Is it possible to disable client authentication for G Suite members (bound google sheet script)
我有一个绑定 google sheet 脚本可以创建 google 驱动器文件夹,我使用 sheet 作为模型,因此用户可以创建新的 sheet 基于那个模型。问题是每次用户创建新的 sheet 时,他们都需要为 oauth 范围重新进行身份验证,因为这是原始 sheet.
的副本
我不知道如何取消身份验证,有人知道吗?
所有用户都是同一域 (G Suite) 的成员
正如@Cooper 在评论中所说:
I think that since the copy is in there drive and not some shared drive then they will have to authenticate it every time they make a new copy.
确实是这样
sheet 的每个新副本都会创建一个新脚本,需要再次对其进行身份验证。
避免这种情况的唯一方法是以其他方式触发您的脚本,例如 G Suite Add-On。
我有一个绑定 google sheet 脚本可以创建 google 驱动器文件夹,我使用 sheet 作为模型,因此用户可以创建新的 sheet 基于那个模型。问题是每次用户创建新的 sheet 时,他们都需要为 oauth 范围重新进行身份验证,因为这是原始 sheet.
的副本我不知道如何取消身份验证,有人知道吗?
所有用户都是同一域 (G Suite) 的成员
正如@Cooper 在评论中所说:
I think that since the copy is in there drive and not some shared drive then they will have to authenticate it every time they make a new copy.
确实是这样
sheet 的每个新副本都会创建一个新脚本,需要再次对其进行身份验证。
避免这种情况的唯一方法是以其他方式触发您的脚本,例如 G Suite Add-On。