mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-07-10 13:32:06 +08:00
新增已收藏MV
接口,更新文档 修复评论接口返回 460 Cheating 的问题
This commit is contained in:
@ -1,4 +1,9 @@
|
|||||||
# 更新日志
|
# 更新日志
|
||||||
|
### 3.1.0 | 2019.01.06
|
||||||
|
- 修复评论接口返回 460 Cheating 的问题
|
||||||
|
|
||||||
|
- 新增`已收藏MV`接口,更新文档
|
||||||
|
|
||||||
### 3.0.9 | 2018.12.15
|
### 3.0.9 | 2018.12.15
|
||||||
- 修复关注异常的问题 #399
|
- 修复关注异常的问题 #399
|
||||||
|
|
||||||
|
@ -108,6 +108,7 @@
|
|||||||
86. 关注用户
|
86. 关注用户
|
||||||
87. 新歌速递
|
87. 新歌速递
|
||||||
88. 喜欢音乐列表(无序)
|
88. 喜欢音乐列表(无序)
|
||||||
|
89. 收藏的 MV 列表
|
||||||
|
|
||||||
## 环境要求
|
## 环境要求
|
||||||
|
|
||||||
|
@ -104,6 +104,7 @@
|
|||||||
86. 关注用户
|
86. 关注用户
|
||||||
87. 新歌速递
|
87. 新歌速递
|
||||||
88. 喜欢音乐列表(无序)
|
88. 喜欢音乐列表(无序)
|
||||||
|
89. 收藏的 MV 列表
|
||||||
|
|
||||||
## 安装
|
## 安装
|
||||||
|
|
||||||
@ -566,6 +567,14 @@ category Code 取值:
|
|||||||
|
|
||||||
**调用例子 :** `/mv/sub`
|
**调用例子 :** `/mv/sub`
|
||||||
|
|
||||||
|
### 收藏的 MV 列表
|
||||||
|
|
||||||
|
说明 : 调用此接口,可获取收藏的 MV 列表
|
||||||
|
|
||||||
|
**接口地址 :** `/mv/sublist`
|
||||||
|
|
||||||
|
**调用例子 :** `/mv/sublist`
|
||||||
|
|
||||||
### 歌单分类
|
### 歌单分类
|
||||||
|
|
||||||
说明 : 调用此接口,可获取歌单分类,包含 category 信息
|
说明 : 调用此接口,可获取歌单分类,包含 category 信息
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
// 专辑评论
|
// 专辑评论
|
||||||
|
|
||||||
module.exports = (query, request) => {
|
module.exports = (query, request) => {
|
||||||
|
query.cookie.os = 'pc'
|
||||||
const data = {
|
const data = {
|
||||||
rid: query.id,
|
rid: query.id,
|
||||||
limit: query.limit || 20,
|
limit: query.limit || 20,
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
// 电台评论
|
// 电台评论
|
||||||
|
|
||||||
module.exports = (query, request) => {
|
module.exports = (query, request) => {
|
||||||
|
query.cookie.os = 'pc'
|
||||||
const data = {
|
const data = {
|
||||||
rid: query.id,
|
rid: query.id,
|
||||||
limit: query.limit || 20,
|
limit: query.limit || 20,
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
// 歌曲评论
|
// 歌曲评论
|
||||||
|
|
||||||
module.exports = (query, request) => {
|
module.exports = (query, request) => {
|
||||||
|
query.cookie.os = 'pc'
|
||||||
const data = {
|
const data = {
|
||||||
rid: query.id,
|
rid: query.id,
|
||||||
limit: query.limit || 20,
|
limit: query.limit || 20,
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
// MV评论
|
// MV评论
|
||||||
|
|
||||||
module.exports = (query, request) => {
|
module.exports = (query, request) => {
|
||||||
|
query.cookie.os = 'pc'
|
||||||
const data = {
|
const data = {
|
||||||
rid: query.id,
|
rid: query.id,
|
||||||
limit: query.limit || 20,
|
limit: query.limit || 20,
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
// 歌单评论
|
// 歌单评论
|
||||||
|
|
||||||
module.exports = (query, request) => {
|
module.exports = (query, request) => {
|
||||||
|
query.cookie.os = 'pc'
|
||||||
const data = {
|
const data = {
|
||||||
rid: query.id,
|
rid: query.id,
|
||||||
limit: query.limit || 20,
|
limit: query.limit || 20,
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
// 视频评论
|
// 视频评论
|
||||||
|
|
||||||
module.exports = (query, request) => {
|
module.exports = (query, request) => {
|
||||||
|
query.cookie.os = 'pc'
|
||||||
const data = {
|
const data = {
|
||||||
rid: query.id,
|
rid: query.id,
|
||||||
limit: query.limit || 20,
|
limit: query.limit || 20,
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "NeteaseCloudMusicApi",
|
"name": "NeteaseCloudMusicApi",
|
||||||
"version": "3.0.9",
|
"version": "3.1.0",
|
||||||
"description": "网易云音乐 NodeJS 版 API",
|
"description": "网易云音乐 NodeJS 版 API",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "node app.js",
|
"start": "node app.js",
|
||||||
|
Reference in New Issue
Block a user