mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-07-05 17:28:55 +08:00
improve document & add offset param of the comment api
This commit is contained in:
parent
b4a9c17ad3
commit
da6a9c8a11
@ -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
|
|||||||
**可选参数:**
|
**可选参数:**
|
||||||
`limit`: 取出评论数量,默认为20
|
`limit`: 取出评论数量,默认为20
|
||||||
|
|
||||||
|
`offset`: 偏移数量,用于分页,如:(评论页数-1)*20, 其中 20 为 limit 的值
|
||||||
|
|
||||||
**接口地址:**
|
**接口地址:**
|
||||||
`/comment`
|
`/comment`
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"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) => {
|
|||||||
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": ""
|
||||||
|
Loading…
x
Reference in New Issue
Block a user