Skip to content

热门评论

调用此接口,传入 type, 资源 id 可获得对应资源热门评论 ( 不需要登录 )

接口信息

项目
接口地址/comment/hot
请求方式GET / POST
需要登录
对应模块comment_hot
文档分类评论

请求参数

参数类型必填默认值说明
idstring-资源 id
typestring-数字,资源类型,对应歌曲,mv, 专辑,歌单,电台, 视频对应以下类型
0: 歌曲
1: mv
2: 歌单
3: 专辑
4: 电台节目
5: 视频
6: 动态
7: 电台
limitnumber | string20取出评论数量,默认为 20
offsetnumber | string-偏移数量,用于分页,如:(评论页数 - 1)*20, 其中 20 为 limit 的值
beforenumber | string-分页参数,取上一页最后一项的 time 获取下一页数据(获取超过 5000 条评论的时候需要用到)

HTTP 示例

bash
GET /comment/hot?id=186016&type=0

编程式调用

ts
import { commentHot } from 'hana-music-api'

const result = await commentHot({
  id: '186016',
  type: '0',
})

console.log(result.body)

补充说明

说明 : 调用此接口,传入 type, 资源 id 可获得对应资源热门评论 ( 不需要登录 )

必选参数 :

id : 资源 id

type: 数字,资源类型,对应歌曲,mv, 专辑,歌单,电台, 视频对应以下类型

text
0: 歌曲

1: mv

2: 歌单

3: 专辑

4: 电台节目

5: 视频

6: 动态

7: 电台

可选参数 : limit: 取出评论数量,默认为 20

offset: 偏移数量,用于分页,如:(评论页数 - 1)*20, 其中 20 为 limit 的值

before: 分页参数,取上一页最后一项的 time 获取下一页数据(获取超过 5000 条评论的时候需要用到)

接口地址 : /comment/hot

调用例子 : /comment/hot?id=186016&type=0

Released under the MIT License.