更新用户歌单参数 #955

This commit is contained in:
binaryify 2020-10-04 22:43:12 +08:00
parent e187c9a228
commit 5adcc5a355
3 changed files with 4 additions and 3 deletions

View File

@ -1,5 +1,5 @@
# 更新日志
### 3.42.0 | 2020.10.04
### 3.42.1 | 2020.10.04
- 新增`用户绑定信息`,`用户绑定手机`,`新版评论`,`点赞过的视频`,`收藏视频到视频歌单`,`删除视频歌单里的视频`,`最近播放的视频`,`音乐日历`等接口
- 创建歌单接口增加`type`参数,可创建视频歌单

View File

@ -5,8 +5,9 @@ module.exports = (query, request) => {
uid: query.uid,
limit: query.limit || 30,
offset: query.offset || 0,
includeVideo: true,
}
return request('POST', `https://music.163.com/weapi/user/playlist`, data, {
return request('POST', `https://music.163.com/api/user/playlist`, data, {
crypto: 'weapi',
cookie: query.cookie,
proxy: query.proxy,

View File

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