Skip to content

弹幕接口

发送弹幕

请求URL

  • /api/v1/danmaku/sendDanmaku

请求方式

  • POST

请求头

  • Authorization': token
  • "content-type": "application/json",

参数

参数名必选类型说明
vidint视频id
partint分P (默认1)
timefloat时间
typeint类型 0滚动 1顶部 2底部
colorstring颜色
textstring内容

返回示例

json
{
  "code": 200,
  "data": null,
  "msg":"ok"
}

备注

获取弹幕

请求URL

  • /api/v1/danmaku/getDanmaku?vid=视频ID?part=分P

请求方式

  • GET

返回示例

json
{
  "code": 200,
    "data": {
    "danmaku": [
      {
        "id": 1,
        "time": 10,
        "type": 0,
        "color": "#fff",
        "text": "私信测试"
      }
    ]
  },
  "msg": "ok"
}

返回参数说明

参数名类型说明
idint弹幕ID
timeint进度
typeint弹幕类型
colorstring弹幕颜色
textstring弹幕内容

备注

根据 MIT 许可证发布