gpt4 book ai didi

google-api - 使用 Google Client Library 检索所有或子组织单位

转载 作者:行者123 更新时间:2023-12-01 23:49:07 24 4
gpt4 key购买 nike

如何使用谷歌客户端库检索谷歌应用域中的所有组织单位?我们需要使用哪个函数来检索 Google 客户端库中的 OrgUnit?

我没有找到关于 gdata-python-client site 的任何文档

def create_service():
f = file(API_DATA["SERVICE_PEM_PATH"], 'rb')
key = f.read()
f.close()

credentials = SignedJwtAssertionCredentials(API_DATA["SERVICE_EMAIL"], key, scope=API_DATA["DIRECTORY_SCOPES"], sub=API_DATA["ADMIN_EMAIL"])
http = httplib2.Http()
http = credentials.authorize(http)

service = build("admin", "directory_v1", http=http)
return service


directory = create_service()

# directory.RetrieveAllOrganizationUsers() -- Function to retrieve Org Units ??

最佳答案

有一个专用于此的 API 方法:orgunits.list

The reference documentation is here .

The Python library documentation is here .

我不是 python 专家,但我希望调用看起来像这样:

directory.orgunits().list(customerId='my_customer').execute()

这不是 GData API,这就是为什么您没有在那里找到信息的原因。 GData 是旧格式 API 的名称,Google 正在逐步弃用它。

关于google-api - 使用 Google Client Library 检索所有或子组织单位,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27478586/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com