Skip to content

楼层评论

调用此接口,传入资源 parentCommentId 和资源类型 type 和资源 id 参数, 可获得该资源的歌曲楼层评论

接口信息

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

请求参数

参数类型必填默认值说明
parentCommentIdstring-楼层评论 id
idstring-资源 id
typestring-数字,资源类型,对应歌曲,mv, 专辑,歌单,电台, 视频对应以下类型
0: 歌曲
1: mv
2: 歌单
3: 专辑
4: 电台节目
5: 视频
6: 动态
7: 电台
limitnumber | string20取出评论数量,默认为 20
timenumber | string-分页参数,取上一页最后一项的 time 获取下一页数据

HTTP 示例

bash
GET /comment/floor?parentCommentId=1438569889&id=29764564&type=0

编程式调用

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

const result = await commentFloor({
  parentCommentId: '1438569889',
  id: '29764564',
  type: '0',
})

console.log(result.body)

补充说明

说明 : 调用此接口,传入资源 parentCommentId 和资源类型 type 和资源 id 参数, 可获得该资源的歌曲楼层评论

必选参数 :
parentCommentId: 楼层评论 id

id : 资源 id

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

text
0: 歌曲

1: mv

2: 歌单

3: 专辑

4: 电台节目

5: 视频

6: 动态

7: 电台

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

time: 分页参数,取上一页最后一项的 time 获取下一页数据

接口地址 : /comment/floor

调用例子 : /comment/floor?parentCommentId=1438569889&id=29764564&type=0

Released under the MIT License.