更新歌单详情接口

This commit is contained in:
binaryify 2020-10-05 13:13:55 +08:00
parent 5adcc5a355
commit 7bb48bace0
3 changed files with 10 additions and 12 deletions

View File

@ -1,4 +1,7 @@
# 更新日志
### 3.42.2 | 2020.10.05
- 更新歌单详情接口
### 3.42.1 | 2020.10.04
- 新增`用户绑定信息`,`用户绑定手机`,`新版评论`,`点赞过的视频`,`收藏视频到视频歌单`,`删除视频歌单里的视频`,`最近播放的视频`,`音乐日历`等接口

View File

@ -6,15 +6,10 @@ module.exports = (query, request) => {
n: 100000,
s: query.s || 8,
}
return request(
'POST',
`https://music.163.com/weapi/v3/playlist/detail`,
data,
{
crypto: 'linuxapi',
cookie: query.cookie,
proxy: query.proxy,
realIP: query.realIP,
},
)
return request('POST', `https://music.163.com/api/v6/playlist/detail`, data, {
crypto: 'linuxapi',
cookie: query.cookie,
proxy: query.proxy,
realIP: query.realIP,
})
}

View File

@ -1,6 +1,6 @@
{
"name": "NeteaseCloudMusicApi",
"version": "3.42.1",
"version": "3.42.2",
"description": "网易云音乐 NodeJS 版 API",
"scripts": {
"start": "node app.js",