提交 813e0a45 编写于 作者: B binaryify

优化电台节目接口,更新文档 #386 #394

上级 abba859b
# 更新日志
### 3.0.8 | 2018.12.12
- 更新文档 #386 #394
- 优化电台节目接口
### 3.0.7 | 2018.11.21
- 修复歌单详情列表,排行榜,所有榜单失效的问题,更新文档 #380 #381
......
......@@ -706,16 +706,6 @@ mp3url 不能直接用 , 可通过 `/song/url` 接口传入歌曲 id 获取具
**必选参数 :** `keywords` : 关键词
**可选参数 :**
`limit` : 返回数量 , 默认为 30
`offset` : 偏移数量,用于分页 , 如
: 如 :( 页数 -1)\*30, 其中 30 为 limit 的值 , 默认为 0
`type`: 搜索类型;默认为 1 即单曲 , 取值意义 : 1: 单曲 10: 专辑 100: 歌手 1000:
歌单 1002: 用户 1004: MV 1006: 歌词 1009: 电台
**接口地址 :** `/search/suggest`
**调用例子 :** `/search/suggest?keywords= 海阔天空`
......@@ -807,10 +797,6 @@ mp3url 不能直接用 , 可通过 `/song/url` 接口传入歌曲 id 获取具
韩国:16
```
`limit`: 取出数量 , 默认为 100
`offset`: 偏移数量 , 用于分页 , 如 :( 评论页数 -1)\*100, 其中 100 为 limit 的值
**接口地址 :** `/top/song`
**调用例子 :** `/top/song?type=96`
......@@ -1632,6 +1618,8 @@ type='1009' 获取其 id, 如`/search?keywords= 代码时间 &type=1009`
`offset` : 偏移数量,用于分页 , 如
: 如 :( 页数 -1)\*30, 其中 30 为 limit 的值 , 默认为 0
`asc` : 排序方式,默认为 `false` (新 => 老 ) 设置 `true` 可改为 老 => 新
**接口地址 :** `/dj/program`
**调用例子 :** `/dj/program?rid=336355127&limit=40` ( 对应 ' 代码时间 ' 的节目列表 )
......
// 电台节目列表
const { toBoolean } = require('../util')
module.exports = (query, request) => {
const data = {
radioId: query.rid,
limit: query.limit || 30,
offset: query.offset || 0,
asc: query.asc
}
return request(
'POST', `https://music.163.com/weapi/dj/program/byradio`, data,
{crypto: 'weapi', cookie: query.cookie, proxy: query.proxy}
)
}
\ No newline at end of file
const data = {
radioId: query.rid,
limit: query.limit || 30,
offset: query.offset || 0,
asc: toBoolean(query.asc)
}
console.log(toBoolean(query.asc))
return request(
'POST',
`https://music.163.com/weapi/dj/program/byradio`,
data,
{ crypto: 'weapi', cookie: query.cookie, proxy: query.proxy }
)
}
// 新歌速递
module.exports = (query, request) => {
const data = {
areaId: query.type || 0, // 全部:0 华语:7 欧美:96 日本:8 韩国:16
limit: query.limit || 100,
offset: query.offset || 0,
total: true
}
return request(
'POST', `https://music.163.com/weapi/v1/discovery/new/songs`, data,
{crypto: 'weapi', cookie: query.cookie, proxy: query.proxy}
)
const data = {
areaId: query.type || 0, // 全部:0 华语:7 欧美:96 日本:8 韩国:16
// limit: query.limit || 100,
// offset: query.offset || 0,
total: true
}
return request(
'POST',
`https://music.163.com/weapi/v1/discovery/new/songs`,
data,
{ crypto: 'weapi', cookie: query.cookie, proxy: query.proxy }
)
}
{
"name": "NeteaseCloudMusicApi",
"version": "3.0.7",
"version": "3.0.8",
"description": "网易云音乐 NodeJS 版 API",
"scripts": {
"start": "node app.js",
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册