You need to enable JavaScript to run this app.
导航
游戏版本列表 ListGameVersion
最近更新时间:2025.09.15 16:05:13首次发布时间:2022.03.01 17:31:35
复制全文
我的收藏
有用
有用
无用
无用

查询指定游戏的版本信息。

请求说明

  • 请求方式:GET
  • 请求地址:https://open.volcengineapi.com?Action=ListGameVersion&Version=2022-02-10

请求参数

下表仅列出了接口特有的请求参数和部分公共参数。完整的公共参数列表,参考 公共请求参数

字段

位置

类型

必填

说明

Action

Query

String

公共参数,OpenAPI 接口名称

ListGameVersion

Version

Query

String

公共参数,OpenAPI 接口版本

2022-02-10

game_id

Query

String

筛选条件,游戏 ID

可通过调用 ListGame 接口获取

当传入 custom_game_id 时,可不传入(以 game_id 优先)

custom_game_id

Query

String

筛选条件,用户自定义游戏 ID

可通过调用 ListGame 接口获取

当传入 game_id 时,可不传入

offset

Query

Int64

分页偏移量

例:0

count

Query

Int64

单页数量

默认值:10

返回结果

通用返回参数,参考 ResponseMetadata 结构说明
Result 字段包含以下参数:

字段

类型

说明

total

Int64

查询到的游戏总数

row

List<GameVersion>

游戏版本信息列表,参考以下 GameVersion 结构说明

GameVersion 结构说明

字段

类型

说明

game_id

String

游戏 ID

custom_game_id

String

用户自定义游戏 ID

version_id

String

游戏版本 ID

download_url

String

游戏包下载地址

package_name

String

游戏包名称

version_code

Int64

游戏版本 ID,仅作为标识

md5

String

游戏文件 MD5

package_size

Int32

文件大小,单位 KB

create_time

Int64

版本创建时间

update_time

Int64

版本更新时间

示例

请求示例

GET https://open.volcengineapi.com?Action=ListGameVersion
&Version=2022-02-10
&game_id=7064470096059xxxxxx
&<通过header传入的公共请求参数>

返回示例

{
    "ResponseMetadata": {
        "Action": "ListGameVersion",
        "Region": "cn-north-1",
        "RequestId": "20220222120920010225110011036CB830",
        "Service": "veGame",
        "Version": "2022-02-10"
    },
    "Result": {
        "row": [
            {
                "game_id": "7064470096059xxxxxx",
                "custom_game_id": "game01",
                "version_id": "7064470096059xxxxxx",
                "download_url": "https://xxx-file.xxxxxx.com/cloudgame/xxxxxx.apk?x-expires=25862xxxxxx&x-signature=XXXXXX",
                "package_name": "com.image.gamename",
                "version_code": 235,
                "md5": "5403bf7211ec9fb042a6825876xxxxxx",
                "package_size": 76621,
                "create_time": 1645502043,
                "update_time": 1645502160
            }
        ],
        "total": 1
    }
}