歌曲 - jues-zz/ddexpert_server GitHub Wiki
1. get /song/:id 获取歌曲信息
接收 get 参数
accesstoken String 用户的 accessToken
id是网易歌曲id(较短那个)
返回值
{ errcode: 0, status:1 } 已收藏
{ errcode: 0, status:0 } 未收藏
2. post /song/collect 收藏/取消收藏歌曲
接收 post 参数
accesstoken String 用户的 accessToken
songId String 网易歌曲Id
song Json 歌曲结构 (收藏歌曲时必须提供,取消歌曲时可不提供)
song = {
"starred": false,
"popularity": 95,
"starredNum": 0,
"playedNum": 0,
"dayPlays": 0,
"hearTime": 0,
"mp3Url": "http://m2.music.126.net/1H7iZ9sWANTqKlKAD0L5vw==/1012650209189890.mp3",
"rtUrls": [],
"name": "玫瑰色的你",
"id": 326695,
"position": 1,
"duration": 297927,
"status": 1,
"alias": [],
"artists": [
{
"img1v1Id": 0,
"name": "张悬",
"id": 10557,
"alias": [],
"briefDesc": "",
"picUrl": "http://p3.music.126.net/6y-UleORITEDbvrOLV0Q8A==/5639395138885805.jpg",
"picId": 0,
"albumSize": 0,
"img1v1Url": "http://p4.music.126.net/6y-UleORITEDbvrOLV0Q8A==/5639395138885805.jpg",
"trans": "",
"musicSize": 0
}
],
"score": 95,
"album": {
"songs": [],
"name": "神的游戏",
"id": 32311,
"type": "专辑",
"size": 10,
"status": 1,
"description": "",
"tags": "",
"alias": [
"Games We Play"
],
"artists": [
{
"img1v1Id": 0,
"name": "张悬",
"id": 10557,
"alias": [],
"briefDesc": "",
"picUrl": "http://p4.music.126.net/6y-UleORITEDbvrOLV0Q8A==/5639395138885805.jpg",
"picId": 0,
"albumSize": 0,
"img1v1Url": "http://p3.music.126.net/6y-UleORITEDbvrOLV0Q8A==/5639395138885805.jpg",
"trans": "",
"musicSize": 0
}
],
"briefDesc": "",
"artist": {
"img1v1Id": 0,
"name": "",
"id": 0,
"alias": [],
"briefDesc": "",
"picUrl": "http://p4.music.126.net/6y-UleORITEDbvrOLV0Q8A==/5639395138885805.jpg",
"picId": 0,
"albumSize": 0,
"img1v1Url": "http://p3.music.126.net/6y-UleORITEDbvrOLV0Q8A==/5639395138885805.jpg",
"trans": "",
"musicSize": 0
},
"picUrl": "http://p3.music.126.net/cdoUJ2yO5LRuJhGeIsRdjQ==/46179488380332.jpg",
"picId": 46179488380332,
"commentThreadId": "R_AL_3_32311",
"publishTime": 1344528000000,
"company": "索尼音乐娱乐",
"copyrightId": 5003,
"blurPicUrl": "http://p4.music.126.net/cdoUJ2yO5LRuJhGeIsRdjQ==/46179488380332.jpg",
"companyId": 0,
"pic": 46179488380332
},
"commentThreadId": "R_SO_4_326695",
"fee": 0,
"hMusic": {
"name": "玫瑰色的你",
"id": 10334053,
"size": 11930240,
"extension": "mp3",
"dfsId": 1012650209189888,
"playTime": 297927,
"bitrate": 320000,
"sr": 44100,
"volumeDelta": -1.31
},
"mMusic": {
"name": "玫瑰色的你",
"id": 10334054,
"size": 5976935,
"extension": "mp3",
"dfsId": 1012650209189889,
"playTime": 297927,
"bitrate": 160000,
"sr": 44100,
"volumeDelta": -0.87
},
"lMusic": {
"name": "玫瑰色的你",
"id": 10334055,
"size": 3595194,
"extension": "mp3",
"dfsId": 1012650209189890,
"playTime": 297927,
"bitrate": 96000,
"sr": 44100,
"volumeDelta": -0.89
},
"copyrightId": 7001,
"mvid": 5102,
"ftype": 0,
"rtype": 0,
"rurl": null,
"copyFrom": "",
"bMusic": {
"name": "玫瑰色的你",
"id": 10334055,
"size": 3595194,
"extension": "mp3",
"dfsId": 1012650209189890,
"playTime": 297927,
"bitrate": 96000,
"sr": 44100,
"volumeDelta": -0.89
},
"audition": {
"name": "玫瑰色的你",
"id": 38036062,
"size": 2411001,
"extension": "m4a",
"dfsId": 5841705278434201,
"playTime": 297927,
"bitrate": 64000,
"sr": 44100,
"volumeDelta": 0
},
"ringtone": "600902000009458622",
"disc": "",
"no": 1,
"crbt": "b957432baaac42d8096f76ae357992ce",
"rtUrl": null
}
返回值示例
{success: true}