我在使用Google Apps脚本创建自动化脚本时遇到问题。
我的功能是:
function addToGroup(email, group) {
// Create a user with membership access
var user = {
email: email,
role: 'MEMBER'
};
AdminDirectory.Members.insert(user, group)
}
这与GSuite群组完美配合,但是当我尝试将此词与@ googlegroups.com群组地址一起使用时,我遇到了“未找到域名”的问题。
是否有不同的方法可以添加到这些类型的组?
欢迎提供任何信息。
由于