0

我的 Google Apps for Business 帐户中有数百个组。我想批量更新一堆设置,所以我下载了 PHP 客户端。我不知道如何提供信息来查询和更新设置。似乎一切都是围绕用户使用 Web 浏览器登录的概念设计的。我在 API 控制台的“简单 API 访问”下使用“服务器应用程序密钥(带 IP 锁定)”注册了该应用程序。我似乎无法进行任何查询,但我的权限被拒绝。

示例网址: https ://www.googleapis.com/groups/v1/groups/groupname@mydomain.com?key=MY_KEY_HERE '

给我:

<?xml version="1.0" encoding="UTF-8"?>
<errors xmlns="http://schemas.google.com/g/2005">
 <error>
  <domain>GData</domain>
  <code>required</code>
  <location type="header">Authorization</location>
  <internalReason>Login Required</internalReason>
 </error>
</errors>

这应该是可能的吗?

4

1 回答 1

0

您需要以 Google Apps 超级管理员身份执行 OAuth 2.0 身份验证,才能调用群组设置 API。

您可能只想使用Dito GAM批量更新组设置,而不是重新发明轮子。

于 2013-05-08T18:11:58.063 回答