# 专辑歌曲信息接口
# 接口描述
用于获取专辑下的所有歌曲信息列表数据。
# 调用方法
请求地址:/ALBUM/albumGetSong.json
请求方法:POST
# 输入参数
参数名 | 类型 | 是否必传 | 说明 |
---|---|---|---|
productId | string | 必传 | 专辑 productId |
pageNo | numeric | 必传 | 页数;值范围[1] |
pageSize | numeric | 必传 | 每页数量;值范围[1,50] |
# 返回结果
{
"state": true,
"errcode": "",
"errmsg": "",
"data": {
"total": 1,
"result": [
{
"artist": [
{
"artistCode": "A10047720",
"birthday": "1983-07-17",
"gender": "男",
"name": "薛之谦",
"artistType": 38,
"artistTypeName": "歌手",
"pic": "https://img01.dmhmusic.com/0101/M00/F8/AE/ChR45V7XEJWAZJ8KAAL8wj6aS4w115.jpg",
"region": ""
}
],
"cpId": 23,
"pic": "https://img01.dmhmusic.com/0102/M00/FB/D2/ChR45F7zhz6AAmQ0ABfwN8oS_sw095.jpg",
"title": "摩天大楼",
"duration": 230,
"assetId": "T10044298014",
"genre": "流行",
"albumTitle": "摩天大楼",
"id": "T10044298014",
"lang": "中文",
"afReplayGain": -1.300003,
"albumAssetCode": "P10002077754",
"releaseDate": "2018-04-18T00:00:00.000Z",
"isrc": "CN-Z50-18-00330",
"sort": 1,
"meanVolume": -14.8,
"maxVolume": 0,
"lyric": "https://static01.dmhmusic.com/0101/M00/10/C5/ChR45V8ieY-AWXArAAAILwwOB7c212.lrc",
"pay_model": 1,
"_trackId": 13799863,
"TSID": "T10044298014",
"allRate": ["3000", "64", "320", "128"],
"pushTime": "2019-03-05T16:43:14+08:00",
"downTime": "2037-01-01T00:00:00+08:00",
"bizList": ["sdk_cpm"],
"rateFileInfo": {
"64": {
"size": 1844408,
"format": "aac"
},
"128": {
"size": 3688951,
"format": "mp3"
},
"320": {
"size": 9222313,
"format": "mp3"
},
"3000": {
"size": 20263769,
"format": "flac"
}
}
}
]
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66