提交 c41385f6 编写于 作者: B binaryify

improve document & add offset param of the comment api

上级 a6bfaf62
...@@ -105,10 +105,10 @@ $ node app.js ...@@ -105,10 +105,10 @@ $ node app.js
说明:调用此接口,传入搜索关键词可以搜索该音乐,关键词可以多个,以空格隔开,如"周杰伦 搁浅"(不需要登录) 说明:调用此接口,传入搜索关键词可以搜索该音乐,关键词可以多个,以空格隔开,如"周杰伦 搁浅"(不需要登录)
**必选参数:** **必选参数:**
`keywords` : 关键词 `keywords` : 关键词
**可选参数:** **可选参数:**
`limit` : 返回数量,默认为30 `limit` : 返回数量,默认为30
`type`: 搜索类型;默认为1,取值意义: `type`: 搜索类型;默认为1,取值意义:
1: 单曲 1: 单曲
10: 专辑 10: 专辑
...@@ -116,7 +116,7 @@ $ node app.js ...@@ -116,7 +116,7 @@ $ node app.js
1000: 歌单 1000: 歌单
1002: 用户 1002: 用户
`offset` : 偏移数量,用于分页 `offset` : 偏移数量,用于分页,如: 如:(评论页数-1)*30, 其中 30 为 limit 的值
**接口地址:** **接口地址:**
`/search` `/search`
...@@ -151,6 +151,8 @@ $ node app.js ...@@ -151,6 +151,8 @@ $ node app.js
**可选参数:** **可选参数:**
`limit`: 取出评论数量,默认为20 `limit`: 取出评论数量,默认为20
`offset`: 偏移数量,用于分页,如:(评论页数-1)*20, 其中 20 为 limit 的值
**接口地址:** **接口地址:**
`/comment` `/comment`
......
{ {
"name": "NeteaseCloudMusicApi", "name": "NeteaseCloudMusicApi",
"version": "2.1.1", "version": "2.1.2",
"description": "", "description": "",
"scripts": { "scripts": {
"start": "node app.js", "start": "node app.js",
......
...@@ -6,7 +6,7 @@ router.get("/", (req, res) => { ...@@ -6,7 +6,7 @@ router.get("/", (req, res) => {
const rid=req.query.id const rid=req.query.id
const cookie = req.get('Cookie') ? req.get('Cookie') : '' const cookie = req.get('Cookie') ? req.get('Cookie') : ''
const data = { const data = {
"offset": 0, "offset": req.query.offset || 0,
"rid": rid, "rid": rid,
"limit": req.query.limit || 20, "limit": req.query.limit || 20,
"csrf_token": "" "csrf_token": ""
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册