使用适用于PHP的Google API客户端库检索成员的所有组

时间:2015-05-13 18:19:31

标签: php google-api

我正在使用适用于PHP的Google API客户端库,但我没有看到一个功能来检索成员的所有组,但它存在于Directory API中: 获取https://www.googleapis.com/admin/directory/v1/groups?userKey=user密钥

它丢失了吗?

是否有人想出如何使用PHP库执行此操作?

1 个答案:

答案 0 :(得分:0)

您可以使用groups.list()方法,该方法与您在Google Apps帐户中列出所有群组的方法相同。唯一的区别是您指定userKey属性以将结果范围限定为给定用户所属的组:

$("#tableId").on("click", ".remove", function() {
    // Your code here
});