3.1 获取点播列表接口Server.md
3.5 KB
;/* Title: 1.1 获取点播信息接口 */
接口描述
接口地址
http://api.cnlive.com/open/api2/...
接口协议
HTTP GET
接口请求参数
| 参数名 | 参数类型 | 必选 | 参数说明 |
|---|---|---|---|
| appId | string | true | 应用ID |
| categoryId | int | false | 分类Id,从分类树接口中取。 categoryId 和spId 不能同时为空 根分类7个是常量,每个SP都有,分别如下:电影100001电视剧100002;娱乐100004;资讯100008;体育100012;教育100016;其他100026 |
| spIds | string | false | spId,可以传多个,以逗号隔开。 categoryId 和spId 不能同时为空 |
| page | string | false | 页号,如为空,默认值:1 |
| pageSize | string | false | 每页返回条数,如为空,默认值:20 |
| lastModify | long | false | 时间戳,返回最后修改时间在此时间之后的所有内容 |
| timestamp | int | true | 精确到秒,当前Unix时间戳,请保证请求服务器时间正确 |
| sign | String | true | 签名规则见 签名详情 |
返回值
| 参数名 | 参数类型 | 必选 | 参数说明 |
|---|---|---|---|
| errorCode | int | true | 错误类型号 |
| errorMessage | string | true | 错误类型 |
| videoId | string | true | 节目的唯一标识 |
| videoName | string | true | 节目标题 |
| subTitle | string | false | 节目副标题 |
| desc | string | false | 节目描述 |
| categoryId | int | true | 分类Id |
| categoryName | string | false | 分类名称 |
| tag | string | false | 标签,多个以 逗号分隔 |
| spid | int | false | 所属sp |
| createDate | string | true | 内容创建时间 |
| lastModify | string | true | 最后修改时间 |
| imginfos | map | false | 图片信息 |
返回JSON格式的节目元数据信息,json示例如下:
{
"data":{
"programs":[ {
"videoId":"17cbfede6f074db18d06fdeb170e41c4",
"videoName":"大道之行一带一路",
"categoryId":123,
"categoryName":"资讯",
"desc":"一带一路特别节目",
"imginfos":{
"316*506":"http://test.qnvod.cnlive.com/60/img/2017/0809/ff8080815dc0be57015dc4c1fe380061/000002.jpg?imageView2/1/w/316/h/506",
"112*63":"http://test.qnvod.cnlive.com/60/img/2017/0809/ff8080815dc0be57015dc4c1fe380061/000002.jpg?imageView2/1/w/112/h/63"
},
"rates":"1,2",
"spid":60,
"subTitle":"",
"tag":"丝绸之路,一带一路,文化交流,中华文化",
"createDate":"2017-09-20 12:30:34",
"lastModify":"2017-09-21 12:30:34"
},
{
"videoId":"17cbfede6f074db18d06fdeb170e41c4",
"videoName":"大道之行一带一路",
"categoryId":123,
"categoryName":"资讯",
"desc":"一带一路特别节目",
"imginfos":{
"316*506":"http://test.qnvod.cnlive.com/60/img/2017/0809/ff8080815dc0be57015dc4c1fe380061/000002.jpg?imageView2/1/w/316/h/506",
"112*63":"http://test.qnvod.cnlive.com/60/img/2017/0809/ff8080815dc0be57015dc4c1fe380061/000002.jpg?imageView2/1/w/112/h/63"
},
"rates":"1,2",
"spid":60,
"subTitle":"",
"tag":"丝绸之路,一带一路,文化交流,中华文化",
"createDate":"2017-09-20 12:30:34",
"lastModify":"2017-09-21 12:30:34"
}
]
},
"errorCode":0,
"errorMessage":"sucess"
}