Groups Service
群组
此服务允许脚本访问 Google 群组。它可用于查询群组的电子邮件地址或用户是直接成员的群组列表等信息。以下示例展示了当前用户是多少个群组的成员:
var groups = GroupsApp.getGroups();
Logger.log('You are a member of %s Google Groups.', groups.length);
类
名称 | 简介 |
Group | 一个群组对象,您可以查询其成员以及这些成员在群组中的角色。 |
GroupsApp | 此类提供对 Google 群组信息的访问权限。 |
Role | 用户在群组中的可能角色,例如所有者或普通成员。 |
属性
属性 | 类型 | 说明 |
OWNER | Enum | 群组的所有者。 |
MANAGER | Enum | 群组的管理员。 |
MEMBER | Enum | 此群组的成员,但既不是所有者也不是管理员。 |
INVITED | Enum | 群组所有者或管理员邀请加入群组,但尚未接受邀请的用户。 |
PENDING | Enum | 已请求加入群组,但尚未获得所有者或管理员批准的用户。 |
BANNED | Enum | 被禁止加入某个群组的用户,无法尝试加入该群组。 |
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2024-12-05。
[null,null,["最后更新时间 (UTC):2024-12-05。"],[[["The Groups service enables scripts to interact with Google Groups, allowing tasks like retrieving group details and user memberships."],["The `Group` class represents a Google Group, providing methods to access its email, members, roles, and child groups."],["The `GroupsApp` class provides methods for retrieving group information, such as finding a group by email or listing a user's memberships."],["The `Role` enum defines the possible roles a user can have within a group (e.g., OWNER, MEMBER)."]]],[]]