Skip to content

Commit

Permalink
更新文档,更新eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
Binaryify committed Aug 20, 2019
1 parent aed229e commit 83b6bfc
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 9 deletions.
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ module.exports = {

rules: {
indent: ['error', 2, { SwitchCase: 1 }],
"space-infix-ops": ["error", {"int32Hint": false}],
'key-spacing': [
2,
{
Expand Down
5 changes: 4 additions & 1 deletion README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,10 @@
128. 更新歌单标签
129. 默认搜索关键词
130. 删除歌单

131. 电台banner
132. 用户电台
133. 热门电台
134. 电台 - 节目详情

## 环境要求

Expand Down
42 changes: 42 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,10 @@
128. 更新歌单标签
129. 默认搜索关键词
130. 删除歌单
131. 电台banner
132. 用户电台
133. 热门电台
134. 电台 - 节目详情

## 安装

Expand Down Expand Up @@ -2009,6 +2013,36 @@ MV 数据 , 数据包含 mv 名字 , 歌手 , 发布时间 , mv 视频地址等

**调用例子 :** `/user/cloud/del`

### 电台banner
说明 : 调用此接口,可获取电台banner

**接口地址 :** `/dj/banner`

**调用例子 :** `/dj/banner`


### 用户电台

说明 : 调用此接口, 传入用户id可获取用户创建的电台

**必选参数 :** `uid`: 用户id

**接口地址 :** `/user/audio`

**调用例子 :** `/user/audio?uid=32953014`

### 热门电台
说明 : 调用此接口,可获取热门电台

**可选参数 :**

`limit` : 返回数量 , 默认为 30

`offset` : 偏移数量,用于分页 , 如 :( 页数 -1)\*30, 其中 30 为 limit 的值 , 默认为 0
**接口地址 :** `/dj/hot`

**调用例子 :** `/dj/hot`

### 电台 - 推荐

说明 : 登陆后调用此接口 , 可获得推荐电台
Expand Down Expand Up @@ -2128,6 +2162,14 @@ type='1009' 获取其 id, 如`/search?keywords= 代码时间 &type=1009`

**调用例子 :** `/dj/program?rid=336355127&limit=40` ( 对应 ' 代码时间 ' 的节目列表 )

### 电台 - 节目详情
说明 : 调用此接口传入电台节目id,可获得电台节目详情

**必选参数 :** `id`: 电台节目 的 id

**接口地址 :** `/dj/program/detail`

**调用例子 :** `/dj/program/detail?id=1367665101`

### 通知 - 私信

Expand Down
11 changes: 3 additions & 8 deletions module/dj_hot.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,11 @@

module.exports = (query, request) => {
const data = {
cat: query.type,
cateId: query.type,
type: query.type,
categoryId: query.type,
category: query.type,
limit: query.limit,
offset: query.offset
limit: query.limit || 30,
offset: query.offset || 0
}
return request(
'POST', `https://music.163.com/weapi/djradio/hot/v1`, data,
{crypto: 'weapi', cookie: query.cookie, proxy: query.proxy}
{ crypto: 'weapi', cookie: query.cookie, proxy: query.proxy }
)
}

0 comments on commit 83b6bfc

Please sign in to comment.