# 获取专辑详情接口
# 简要描述
专辑id(qipuId)和代理商code,获取专辑详情
# 请求URL
- https://api.y.iqiyi.com/api/hotel/v1/album/getAlbumInfoOpen
# 请求方式
- POST
# 参数格式
- JSON
# 参数
{
"channelCode": "4ff8135ac964c58ec7011b7d46e71430",
"version": "1.6",
"timestamp": 10000,
"signature": "adada",
"params": {
"channelCode": "4ff8135ac964c58ec7011b7d46e71430",
"agentCode": "8901e50163944ef0924026a7868f0809",
"qipuId":649245000
}
}
| 参数名 | 必选 | 类型 | 说明 |
|---|---|---|---|
| channelCode | 是 | string | 渠道方对应的 code,用来唯一标记渠道 |
| agentCode | 是 | string | 店铺对应code |
| qipuId | 是 | long | 专辑Id |
# 返回示例
{
"code": "A00000",
"msg": "获取影片编目信息成功",
"data": {
"displayName": "疯岳撬佳人",
"director": "钟少雄",
"videoType": "喜剧,爱情",
"showTime": "2017-02-14",
"description": "性格怯懦的李帅亭自大学时期起,一直暗恋自己的女同学张子墨......",
"producePlace": "华语,内地",
"actor": "岳云鹏,袁姗姗,孙坚,马元,石小满,郭德纲,潘斌龙,杨能",
"score": 8.7,
"language": "普通话",
"totalEpisode": "10",
"qipuId": 649245000,
"shotDesc": "岳云鹏花式狂撩袁姗姗",
"posterImg": "http://pic3.qiyipic.com/image/20170625/d9/60/v_112123122_m_600_m2.jpg",
"episodes": [
{
"qipuId": 229170801,
"displayName": "",
"posterImg": "http://pic3.qiyipic.com/image/20170625/d9/60/v_112123122_m_600_m2.jpg",
"shortDesc": "这是简介",
"description": "这是长简介",
"duration": 1570000
}
]
}
}
# 返回参数说明
| 参数名 | 类型 | 说明 |
|---|---|---|
| qipuId | long | 专辑id |
| displayName | String | 专辑名称 |
| director | String | 导演 |
| actor | String | 演员 |
| posterImg | String | 海报图 |
| shortDesc | String | 专辑简介 |
| description | String | 专辑介绍 |
| score | int | 评分 |
| videoType | String | 专辑类型,如言情,偶像 |
| showTime | String | 上映时间 |
| producePlace | String | 出品地区 |
| language | String | 语言 |
| totalEpisode | int | 总集数 |
| episodes | List | 每集影片信息 |
每集影片信息返回值
| 参数名 | 类型 | 说明 |
|---|---|---|
| qipuId | long | 专辑id |
| displayName | String | 单集名称 |
| coverImg | String | 单集封面图 |
| shortDesc | String | 单集简介 |
| description | String | 单集介绍 |
| duration | long | 单集时长 |
点击此处进行接口调试