You need to enable JavaScript to run this app.
导航
获取节目单列表
最近更新时间:2024.06.19 11:42:27首次发布时间:2024.06.19 11:42:27

您可通过此接口获取当前账号下节目单的 ID、名称及所包含的视频列表等信息。

注意事项

请求频率:单用户请求频率限制为 10 次/秒

请求说明

  • 请求方式:GET
  • 请求地址:https://livesaas.volcengineapi.com/?Action=ListPrograms&Version=2023-08-01

请求参数

下表仅列出该接口特有的请求参数和部分公共参数。更多信息详见公共参数

Query

参数类型是否必选示例值描述
ActionStringListPrograms接口名称。当前 API 的名称为 ListPrograms
VersionString2023-08-01接口版本。当前 API 的版本为 2023-08-01
PageNoInteger1分页查询页码,默认取值为 1
PageItemCountInteger10分页查询数量。取值范围为 [1,500],默认取值为 10
ProgramNameString节目单节目单名称。支持模糊搜索。

返回参数

参数类型示例值描述
PageNoInteger1分页查询页码。
PageItemCountInteger10分页查询数量。
TotalCountInteger1查询结果总数。
ProgramsArray of Programs-节目单信息列表。

Programs

参数类型示例值描述
IdInteger3489节目单 ID。
ProgramNameString节目单节目单名称。
LoopVideosArray of LoopVideos-节目单中视频的信息列表。

LoopVideos

参数类型示例值描述
IndexInteger1视频序号。序号越小,位置越靠前。
VideoCoverImageStringhttps://www.example.com视频封面图。包含协议头。
VideoNameString视频.mp4视频名称。
VideoVidStringv0c251g70cp7jhnvog65i97kr43jg视频 Vid。
OffsetInteger5轮播启动时刻,即视频将从该时刻开始播放。单位为秒。
MediaSizeInteger8589490视频大小。单位为字节。
MediaDurationInteger60视频时长。单位为秒。

ReviewStatus

Integer

2

视频的审核状态。支持以下取值:

  • 1:审核中
  • 2:审核成功
  • 3:审核失败

请求示例

GET https://livesaas.volcengineapi.com/?Action=ListPrograms&Version=2023-08-01

返回示例

{
    "ResponseMetadata": {
        "RequestId": "20230604110420****100232280022D31",
        "Action": "ListPrograms",
        "Version": "2023-08-01",
        "Service": "livesaas",
        "Region": "cn-north-1",
        "SystemTime": 1717399438
    },
    "Result": {
        "PageNo": 1,
        "PageItemCount": 10,
        "TotalCount": 1,
        "Programs": [
            {
                "Id": 3489,
                "ProgramName": "节目单",
                "LoopVideos": [
                    {
                        "Index": 1,
                        "VideoCoverImage": "https://www.example.com",
                        "VideoName": "视频.mp4",
                        "VideoVid": "v0c251g70cp7jhnvog65i97kr43jg",
                        "Offset": 5,
                        "MediaSize": 8589490,
                        "MediaDuration": 60,
                        "ReviewStatus": 2
                    }
                ]
            }
        ]
    }
}

错误码

访问公共错误码错误码获取详细信息。