Method: spaces.list
列出调用方所属的聊天室。只有在发送第一条消息后,群聊和私信才会列出。如需查看示例,请参阅列出聊天室。
支持以下类型的身份验证:
如需按 Google Workspace 组织列出所有命名聊天室,请改用 Workspace 管理员权限使用 spaces.search()
方法。
HTTP 请求
GET https://chat.googleapis.com/v1/spaces
网址采用 gRPC 转码语法。
查询参数
参数 |
pageSize |
integer
可选。要返回的空格数上限。服务返回的值可能少于此值。 如果未指定,则最多返回 100 个聊天室。 最大值为 1000。如果您使用的值超过 1000,系统会自动将其更改为 1000。 负值会返回 INVALID_ARGUMENT 错误。
|
pageToken |
string
可选。从之前的列出聊天室调用接收的页面令牌。请提供此参数以检索后续页面。 进行分页时,过滤条件值应与提供页面令牌的调用相一致。传递不同的值可能会导致意外结果。
|
filter |
string
可选。查询过滤条件。 您可以按聊天室类型 (spaceType ) 过滤聊天室。 如需按空间类型过滤,您必须指定有效的枚举值,例如 SPACE 或 GROUP_CHAT (spaceType 不能为 SPACE_TYPE_UNSPECIFIED )。如需查询多种聊天室类型,请使用 OR 运算符。 例如,以下查询有效:
spaceType = "SPACE"
spaceType = "GROUP_CHAT" OR spaceType = "DIRECT_MESSAGE"
服务器会拒绝无效查询,并返回 INVALID_ARGUMENT 错误。
|
响应正文
对列表聊天室请求的响应。
如果成功,响应正文将包含结构如下的数据:
JSON 表示法 |
{
"spaces": [
{
object (Space )
}
],
"nextPageToken": string
} |
字段 |
spaces[] |
object (Space )
所请求页面(或第一个页面)中的聊天室列表。注意:对于列表请求,聊天室对象中不会返回 permissionSettings 字段。
|
nextPageToken |
string
您可以以 pageToken 形式发送令牌以检索下一页结果。如果为空,则没有后续页面。
|
授权范围
需要以下 OAuth 范围之一:
https://www.googleapis.com/auth/chat.spaces
https://www.googleapis.com/auth/chat.spaces.readonly
https://www.googleapis.com/auth/chat.bot
如需了解详情,请参阅授权指南。
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-02-27。
[null,null,["最后更新时间 (UTC):2025-02-27。"],[[["Lists spaces (excluding empty group chats and DMs) that the caller is a member of, supporting app and user authentication."],["Allows filtering by space type and pagination for retrieving large result sets."],["Requires specific authorization scopes related to Google Chat spaces and bots."],["Provides details on the HTTP request structure, query parameters, and expected response."],["To list all spaces within a Google Workspace organization, use the `spaces.search()` method with administrator privileges."]]],["This document details how to list spaces a user is a member of via an HTTP `GET` request to `https://chat.googleapis.com/v1/spaces`. Key actions include utilizing optional query parameters like `pageSize`, `pageToken`, and `filter` to manage results. The request body must be empty. The response body returns an array of `spaces` and a `nextPageToken` for pagination. Authorization requires specific OAuth scopes, and alternative options exist for listing spaces by Google Workspace organization.\n"]]