From 7a7001b386d311119dc4b137915dd534d955d84e Mon Sep 17 00:00:00 2001 From: binaryify Date: Wed, 18 Sep 2019 10:48:35 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=92=E8=A1=8C=E6=A6=9C=E5=8F=82=E6=95=B0?= =?UTF-8?q?=E6=9B=B4=E6=96=B0,=E6=9B=B4=E6=96=B0=E6=96=87=E6=A1=A3=20#592?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.MD | 2 ++ docs/README.md | 23 ++++++++++++++++++++++- module/top_list.js | 12 +++++++++++- package.json | 2 +- 4 files changed, 36 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.MD b/CHANGELOG.MD index 598c946..4c8d608 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -1,4 +1,6 @@ # 更新日志 +### 3.22.2 | 2019.09.18 +- 排行榜参数更新,更新文档[#592](https://github.com/Binaryify/NeteaseCloudMusicApi/pull/592) ### 3.22.1 | 2019.09.12 - 支持回复评论[#589](https://github.com/Binaryify/NeteaseCloudMusicApi/pull/589) diff --git a/docs/README.md b/docs/README.md index 039beb8..6b270d7 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1955,7 +1955,28 @@ MV 数据 , 数据包含 mv 名字 , 歌手 , 发布时间 , mv 视频地址等 "22": 云音乐ACG音乐榜, -"23": 云音乐嘻哈榜 +"23": 云音乐说唱榜 + +"24": 云音乐古典音乐榜 + +"25": 云音乐电音榜 + +"26": 抖音排行榜 + +"27": 新声榜 + +"28": 云音乐韩语榜 + +"29": 英国Q杂志中文版周榜 + +"30": 电竞音乐榜 + +"31": 云音乐欧美热歌榜 + +"32": 云音乐欧美新歌榜 + +"33": 说唱TOP榜 + ``` **接口地址 :** `/top/list` diff --git a/module/top_list.js b/module/top_list.js index 141b3b5..0578828 100644 --- a/module/top_list.js +++ b/module/top_list.js @@ -24,7 +24,17 @@ const topList = { 20: '112463', //台湾Hito排行榜 21: '3812895', //Beatport全球电子舞曲榜 22: '71385702', //云音乐ACG音乐榜 - 23: '991319590' //云音乐嘻哈榜 + 23: '991319590', //云音乐说唱榜, + 24: '71384707', //云音乐古典音乐榜 + 25: '1978921795', //云音乐电音榜 + 26: '2250011882', //抖音排行榜 + 27: '2617766278', //新声榜 + 28: '745956260', //云音乐韩语榜 + 29: '2023401535', //英国Q杂志中文版周榜 + 30: '2006508653', //电竞音乐榜 + 31: '2809513713', //云音乐欧美热歌榜 + 32: '2809577409', //云音乐欧美新歌榜 + 33: '2847251561', //说唱TOP榜 } module.exports = (query, request) => { diff --git a/package.json b/package.json index eea543f..2108f0e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "NeteaseCloudMusicApi", - "version": "3.22.1", + "version": "3.22.2", "description": "网易云音乐 NodeJS 版 API", "scripts": { "start": "node app.js", -- GitLab