通知 - @我
登录后调用此接口 ,可获取@我数据
接口信息
| 项目 | 值 |
|---|---|
| 接口地址 | /msg/forwards |
| 请求方式 | GET / POST |
| 需要登录 | 是 |
| 对应模块 | msg_forwards |
| 文档分类 | 社交与消息 |
请求参数
| 参数 | 类型 | 必填 | 默认值 | 说明 |
|---|---|---|---|---|
limit | number | string | — | 30 | 返回数量,默认为 30 |
offset | number | string | — | 0 | 偏移数量,用于分页,如:(页数 - 1)*30, 其中 30 为 limit 的值,默认为 0 |
HTTP 示例
bash
GET /msg/forwards?limit=3编程式调用
ts
import { msgForwards } from 'hana-music-api'
const result = await msgForwards({
limit: '3',
})
console.log(result.body)补充说明
说明 : 登录后调用此接口 ,可获取@我数据
可选参数 :
limit : 返回数量,默认为 30
offset : 偏移数量,用于分页,如:(页数 - 1)*30, 其中 30 为 limit 的值,默认为 0
接口地址 : /msg/forwards
调用例子 : /msg/forwards?limit=3