3

An organization in Google Apps can have multiple domains.

API requests to the Admin SDK require the domain name as a parameter. Ex:

https://apps-apis.google.com/a/feeds/domain/2.0/{domainName}/general/defaultLanguage

Is there a way to programatically list all domains for an organization? If, for example, you wanted to change the lanaguage for all domains in an organization, there doesn't seem to be any way to list/iterate through the domains.

4

2 回答 2

2

当域位于同一个 Google Apps 实例中时,您不能为每个域设置单独的策略或管理设置 API。请参阅Google 对多个域的限制文档。

要回答您的第一个问题,Admin SDK 没有允许检索所有域的方法。但是,您可以检索 Google Apps 实例中的所有用户,并使用它来确定在哪些域中创建了用户。

于 2013-07-11T20:29:31.100 回答
2

在新版本的Directory API中,Google 添加了一个名为Domains的功能,可让您获取客户的域列表。

检查以下链接

https://developers.google.com/admin-sdk/directory/v1/reference/domains

于 2015-12-23T13:12:07.017 回答