G Suite Admin SDK-根据具有字段schemaName.fieldName的查询获取用户列表

时间:2018-10-04 00:29:13

标签: python-2.7 google-api-client google-admin-sdk gsuite

我正在尝试仅基于查询获取用户列表。 根据python的Google API客户端文档,它看起来像这样: https://google-api-client-libraries.appspot.com/documentation/admin/directory_v1/python/latest/admin_directory_v1.users.html#list

其中query=some_string

我已经尝试根据特定字段(例如givenName)来吸引用户 在这种情况下,它将是query=givenName:some_name。可行!

但是,我想基于自定义用户属性获取用户列表。根据文档,这将意味着该字段为schemaName.fieldName https://developers.google.com/admin-sdk/directory/v1/guides/search-users

但是我尝试过query=schemaName.fieldName?SSO.role,但无济于事,我无法在线找到该字段的具体示例。

查询将如何查找?我的schemaName = SSO和fieldName = role

谢谢!

1 个答案:

答案 0 :(得分:0)

由Morfinismo回答。