mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
parent
abba859bdf
commit
813e0a45b2
@ -1,4 +1,9 @@
|
|||||||
# 更新日志
|
# 更新日志
|
||||||
|
### 3.0.8 | 2018.12.12
|
||||||
|
- 更新文档 #386 #394
|
||||||
|
|
||||||
|
- 优化电台节目接口
|
||||||
|
|
||||||
### 3.0.7 | 2018.11.21
|
### 3.0.7 | 2018.11.21
|
||||||
- 修复歌单详情列表,排行榜,所有榜单失效的问题,更新文档 #380 #381
|
- 修复歌单详情列表,排行榜,所有榜单失效的问题,更新文档 #380 #381
|
||||||
|
|
||||||
|
@ -706,16 +706,6 @@ mp3url 不能直接用 , 可通过 `/song/url` 接口传入歌曲 id 获取具
|
|||||||
|
|
||||||
**必选参数 :** `keywords` : 关键词
|
**必选参数 :** `keywords` : 关键词
|
||||||
|
|
||||||
**可选参数 :**
|
|
||||||
|
|
||||||
`limit` : 返回数量 , 默认为 30
|
|
||||||
|
|
||||||
`offset` : 偏移数量,用于分页 , 如
|
|
||||||
: 如 :( 页数 -1)\*30, 其中 30 为 limit 的值 , 默认为 0
|
|
||||||
|
|
||||||
`type`: 搜索类型;默认为 1 即单曲 , 取值意义 : 1: 单曲 10: 专辑 100: 歌手 1000:
|
|
||||||
歌单 1002: 用户 1004: MV 1006: 歌词 1009: 电台
|
|
||||||
|
|
||||||
**接口地址 :** `/search/suggest`
|
**接口地址 :** `/search/suggest`
|
||||||
|
|
||||||
**调用例子 :** `/search/suggest?keywords= 海阔天空`
|
**调用例子 :** `/search/suggest?keywords= 海阔天空`
|
||||||
@ -807,10 +797,6 @@ mp3url 不能直接用 , 可通过 `/song/url` 接口传入歌曲 id 获取具
|
|||||||
韩国:16
|
韩国:16
|
||||||
```
|
```
|
||||||
|
|
||||||
`limit`: 取出数量 , 默认为 100
|
|
||||||
|
|
||||||
`offset`: 偏移数量 , 用于分页 , 如 :( 评论页数 -1)\*100, 其中 100 为 limit 的值
|
|
||||||
|
|
||||||
**接口地址 :** `/top/song`
|
**接口地址 :** `/top/song`
|
||||||
|
|
||||||
**调用例子 :** `/top/song?type=96`
|
**调用例子 :** `/top/song?type=96`
|
||||||
@ -1632,6 +1618,8 @@ type='1009' 获取其 id, 如`/search?keywords= 代码时间 &type=1009`
|
|||||||
`offset` : 偏移数量,用于分页 , 如
|
`offset` : 偏移数量,用于分页 , 如
|
||||||
: 如 :( 页数 -1)\*30, 其中 30 为 limit 的值 , 默认为 0
|
: 如 :( 页数 -1)\*30, 其中 30 为 limit 的值 , 默认为 0
|
||||||
|
|
||||||
|
`asc` : 排序方式,默认为 `false` (新 => 老 ) 设置 `true` 可改为 老 => 新
|
||||||
|
|
||||||
**接口地址 :** `/dj/program`
|
**接口地址 :** `/dj/program`
|
||||||
|
|
||||||
**调用例子 :** `/dj/program?rid=336355127&limit=40` ( 对应 ' 代码时间 ' 的节目列表 )
|
**调用例子 :** `/dj/program?rid=336355127&limit=40` ( 对应 ' 代码时间 ' 的节目列表 )
|
||||||
|
@ -1,14 +1,17 @@
|
|||||||
// 电台节目列表
|
// 电台节目列表
|
||||||
|
const { toBoolean } = require('../util')
|
||||||
module.exports = (query, request) => {
|
module.exports = (query, request) => {
|
||||||
const data = {
|
const data = {
|
||||||
radioId: query.rid,
|
radioId: query.rid,
|
||||||
limit: query.limit || 30,
|
limit: query.limit || 30,
|
||||||
offset: query.offset || 0,
|
offset: query.offset || 0,
|
||||||
asc: query.asc
|
asc: toBoolean(query.asc)
|
||||||
}
|
}
|
||||||
|
console.log(toBoolean(query.asc))
|
||||||
return request(
|
return request(
|
||||||
'POST', `https://music.163.com/weapi/dj/program/byradio`, data,
|
'POST',
|
||||||
|
`https://music.163.com/weapi/dj/program/byradio`,
|
||||||
|
data,
|
||||||
{ crypto: 'weapi', cookie: query.cookie, proxy: query.proxy }
|
{ crypto: 'weapi', cookie: query.cookie, proxy: query.proxy }
|
||||||
)
|
)
|
||||||
}
|
}
|
@ -3,12 +3,14 @@
|
|||||||
module.exports = (query, request) => {
|
module.exports = (query, request) => {
|
||||||
const data = {
|
const data = {
|
||||||
areaId: query.type || 0, // 全部:0 华语:7 欧美:96 日本:8 韩国:16
|
areaId: query.type || 0, // 全部:0 华语:7 欧美:96 日本:8 韩国:16
|
||||||
limit: query.limit || 100,
|
// limit: query.limit || 100,
|
||||||
offset: query.offset || 0,
|
// offset: query.offset || 0,
|
||||||
total: true
|
total: true
|
||||||
}
|
}
|
||||||
return request(
|
return request(
|
||||||
'POST', `https://music.163.com/weapi/v1/discovery/new/songs`, data,
|
'POST',
|
||||||
|
`https://music.163.com/weapi/v1/discovery/new/songs`,
|
||||||
|
data,
|
||||||
{ crypto: 'weapi', cookie: query.cookie, proxy: query.proxy }
|
{ crypto: 'weapi', cookie: query.cookie, proxy: query.proxy }
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "NeteaseCloudMusicApi",
|
"name": "NeteaseCloudMusicApi",
|
||||||
"version": "3.0.7",
|
"version": "3.0.8",
|
||||||
"description": "网易云音乐 NodeJS 版 API",
|
"description": "网易云音乐 NodeJS 版 API",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "node app.js",
|
"start": "node app.js",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user