我一直在这个问题上打我的头;“ apps ”下的PHP 客户端库中提供的示例展示了如何使用 apiHttpRequest 类向 Provisioning API 发出 HTTP 请求。该示例显示了如何列出和删除域中的用户(即启用的应用程序),但我有时间了解如何发布到配置 API(提要),因为我想使用 apiHttpRequest 以编程方式创建组。对此的任何帮助将不胜感激!
我已包含用于删除用户的代码示例
// Deleting a User Alias from a Domain (Experimental)
$domain = "example.com";
$user = rawurlencode("user@domain.com");
$req = new apiHttpRequest("https://apps-apis.google.com/a/feeds/alias/2.0/$domain/$user", 'DELETE');
$resp = $client::getIo()->authenticatedRequest($req);
print "<h1>Deleting a User Alias from a Domain</h1>: <pre>" . $resp->getResponseBody() . "</pre>";