Method: sites.versions.list

列出已为指定站点创建的版本。

此列表包括指定站点的默认live频道和任何活动预览频道的版本。

HTTP请求

GET https://firebasehosting.googleapis.com/v1beta1/{parent=sites/*}/versions

URL 使用gRPC 转码语法。

路径参数

参数
parent

string

必需的。要列出版本的站点或频道,采用以下格式之一:

  • sites/ SITE_ID

  • sites/ SITE_ID /channels/ CHANNEL_ID

查询参数

参数
pageSize

integer

要返回的最大版本数。

如果存在的版本少于此最大数量,则服务可能会返回较小的数量。
如果未指定,则默认为 25。最大值为 100;高于 100 的值将被强制为 100。

pageToken

string

先前调用versions.list的令牌,告诉服务器从哪里恢复列表。

filter

string

用于在响应中返回版本子集的过滤器字符串。

当前支持的过滤字段有: namestatuscreateTime 。了解有关 Google 的AIP 160 标准中过滤的更多信息。

请求正文

请求正文必须为空。

响应体

如果成功,响应正文包含具有以下结构的数据:

JSON 表示
{
  "versions": [
    {
      object (Version)
    }
  ],
  "nextPageToken": string
}
领域
versions[]

object ( Version )

版本列表(如果存在)。

nextPageToken

string

分页标记(如果存在除此响应中的结果之外的更多结果)。

在下次调用versions.list时包含此令牌。页面令牌是短暂的,不应存储。

授权范围

需要以下 OAuth 范围之一:

  • https://www.googleapis.com/auth/firebase.hosting.readonly
  • https://www.googleapis.com/auth/firebase.hosting
  • https://www.googleapis.com/auth/firebase.readonly
  • https://www.googleapis.com/auth/firebase
  • https://www.googleapis.com/auth/cloud-platform.read-only
  • https://www.googleapis.com/auth/cloud-platform

有关详细信息,请参阅身份验证概述