Skip to content
This repository has been archived by the owner on Apr 16, 2024. It is now read-only.

Commit

Permalink
新增歌曲排序接口
Browse files Browse the repository at this point in the history
  • Loading branch information
Binaryify committed Jun 3, 2020
1 parent f420959 commit b7f8d9d
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# 更新日志
### 3.32.1 | 2020.06.03
- 新增歌曲排序接口

### 3.32.0 | 2020.06.03
- 更新排行榜接口,支持传入榜单id
- 新增榜单顺序调整接口 [#806](https://github.com/Binaryify/NeteaseCloudMusicApi/issues/806)
Expand Down
27 changes: 22 additions & 5 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,8 @@ signature:用户签名
### 更新歌单

说明 : 登陆后调用此接口,可以更新用户歌单
参数:

**必选参数 :**

```
id:歌单id
Expand All @@ -534,8 +535,8 @@ tags:歌单tag ,多个用 `;` 隔开,只能用官方规定标签

### 更新歌单描述
说明 : 登陆后调用此接口,可以单独更新用户歌单描述
参数:

**必选参数 :**
```
id:歌单id
Expand All @@ -548,7 +549,8 @@ desc:歌单描述

### 更新歌单名
说明 : 登陆后调用此接口,可以单独更新用户歌单名
参数:

**必选参数 :**

```
id: 歌单id
Expand All @@ -562,7 +564,8 @@ name: 歌单名

### 更新歌单标签
说明 : 登陆后调用此接口,可以单独更新用户歌单标签
参数:

**必选参数 :**

```
id: 歌单id
Expand All @@ -576,7 +579,8 @@ tags: 歌单标签

### 调整歌单顺序
说明 : 登陆后调用此接口,可以根据歌单id顺序调整歌单顺序
参数:


**必选参数 :**

`ids`: 歌单id列表
Expand All @@ -585,6 +589,19 @@ tags: 歌单标签

**调用例子 :** `/playlist/order/update?ids=[111,222]`

### 调整歌曲顺序
说明 : 登陆后调用此接口,可以根据歌曲id顺序调整歌曲顺序


**必选参数 :**
`pid`: 歌单id

`ids`: 歌曲id列表

**接口地址 :** `/song/order/update`

**调用例子 :** `/song/order/update?pid=2039116066&ids=[5268328,1219871]`

### 获取用户电台

说明 : 登陆后调用此接口 , 传入用户 id, 可以获取用户电台
Expand Down
20 changes: 20 additions & 0 deletions module/song_order_update.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// 更新歌曲顺序

module.exports = (query, request) => {
const data = {
pid: query.pid,
trackIds: query.ids,
op: 'update',
}

console.log(data)
return request(
'POST', `http://interface.music.163.com/api/playlist/manipulate/tracks`, data,
{
crypto: 'weapi',
cookie: query.cookie,
proxy: query.proxy,
url: '/api/playlist/desc/update'
}
)
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "NeteaseCloudMusicApi",
"version": "3.32.0",
"version": "3.32.1",
"description": "网易云音乐 NodeJS 版 API",
"scripts": {
"start": "node app.js",
Expand Down

0 comments on commit b7f8d9d

Please sign in to comment.