文档
测试

获取歌单包含歌曲

GET
/getPlayListDetail

请求参数

参数名
类型
描述
必填
id
int
需要获取歌单的id
必填

响应参数

参数名
类型
描述
必填
code
int
同search
必填
result
array
包含歌单中所含歌曲的数组
必填

说明 / 示例

```json { "code": 200, "result": { "songs": [ { "name": "Toosie Slide", "id": 1437204419, "singer": "Drake", "album": "Toosie Slide", "image": "http://p2.music.126.net/1NQMiv0HoJe0HOojDEQpmA==/109951164866536606.jpg", "duration": 247092, "publishTime": 1585843200000, "source": 0 }, { "name": "Life Is Good", "id": 1415767465, "singer": "Future", "album": "Drake", "image": "http://p2.music.126.net/1x6wU7OtRLx_EBlzeCjybQ==/109951164616072505.jpg", "duration": 237792, "publishTime": 1578758400000, "source": 0 } ] } } ```