修复歌单详情列表,排行榜,所有榜单失效的问题,更新文档 #380 #381

This commit is contained in:
binaryify 2018-11-22 14:35:25 +08:00
parent 0dd6c4a49a
commit abba859bdf
6 changed files with 30 additions and 21 deletions

View File

@ -1,6 +1,6 @@
# 更新日志 # 更新日志
### 3.0.6 | 2018.11.21 ### 3.0.7 | 2018.11.21
- 修复歌单详情列表失效的问题 #380 #381 - 修复歌单详情列表,排行榜,所有榜单失效的问题,更新文档 #380 #381
### 3.0.4 | 2018.11.15 ### 3.0.4 | 2018.11.15
- 修复 `/song/url` 接口无法返回多个音乐数据的问题 - 修复 `/song/url` 接口无法返回多个音乐数据的问题

View File

@ -99,14 +99,15 @@
77. 热门评论 77. 热门评论
78. 视频评论 78. 视频评论
79. 退出登录 79. 退出登录
80. 所有榜单内容摘要 80. 所有榜单
81. 收藏视频 81. 所有榜单内容摘要
82. 收藏 MV 82. 收藏视频
83. 视频详情 83. 收藏 MV
84. 相关视频 84. 视频详情
85. 关注用户 85. 相关视频
86. 新歌速递 86. 关注用户
87. 喜欢音乐列表(无序) 87. 新歌速递
88. 喜欢音乐列表(无序)
## 环境要求 ## 环境要求

View File

@ -95,14 +95,15 @@
77. 热门评论 77. 热门评论
78. 视频评论 78. 视频评论
79. 退出登录 79. 退出登录
80. 所有榜单内容摘要 80. 所有榜单
81. 收藏视频 81. 所有榜单内容摘要
82. 收藏 MV 82. 收藏视频
83. 视频详情 83. 收藏 MV
84. 相关视频 84. 视频详情
85. 关注用户 85. 相关视频
86. 新歌速递 86. 关注用户
87. 喜欢音乐列表(无序) 87. 新歌速递
88. 喜欢音乐列表(无序)
## 安装 ## 安装
@ -1519,6 +1520,13 @@ MV 数据 , 数据包含 mv 名字 , 歌手 , 发布时间 , mv 视频地址等
![排行榜](https://raw.githubusercontent.com/Binaryify/NeteaseCloudMusicApi/master/static/top_list.png) ![排行榜](https://raw.githubusercontent.com/Binaryify/NeteaseCloudMusicApi/master/static/top_list.png)
### 所有榜单
说明 : 调用此接口,可获取所有榜单
**接口地址 :** `/toplist`
**调用例子 :** `/toplist`
### 所有榜单内容摘要 ### 所有榜单内容摘要
说明 : 调用此接口,可获取所有榜单内容摘要 说明 : 调用此接口,可获取所有榜单内容摘要

View File

@ -34,6 +34,6 @@ module.exports = (query, request) => {
} }
return request( return request(
'POST', `https://music.163.com/weapi/v3/playlist/detail`, data, 'POST', `https://music.163.com/weapi/v3/playlist/detail`, data,
{crypto: 'weapi', cookie: query.cookie, proxy: query.proxy} {crypto: 'linuxapi', cookie: query.cookie, proxy: query.proxy}
) )
} }

View File

@ -3,6 +3,6 @@
module.exports = (query, request) => { module.exports = (query, request) => {
return request( return request(
'POST', `https://music.163.com/weapi/toplist`, {}, 'POST', `https://music.163.com/weapi/toplist`, {},
{crypto: 'weapi', cookie: query.cookie, proxy: query.proxy} {crypto: 'linuxapi', cookie: query.cookie, proxy: query.proxy}
) )
} }

View File

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