创建主题视频接口

  • 接口说明: 创建主题视频接口,用作前端上传后回调。供后续视频清理使用
  • 接口地址: /api/thread/video
  • 请求方式: POST

请求参数

参数名称类型是否必须描述
file_idstring视频上传后返回的 file_id
file_namestring视频文件名称
typeint类型:0 视频(默认)1 音频

请求示例

  1. {
  2. "data": {
  3. "type": "thread-video",
  4. "attributes": {
  5. "file_id": "1"
  6. }
  7. }
  8. }

返回说明

  • 成功,http 状态码 201
  • 失败,http 状态码 500

返回结果

参数名称类型出现要求描述
linksobject接口链接
dataobject基础数据
typestring数据类型
idint数据 id
attributesobject数据属性
statusint视频状态 0:转码中 1 转码完成 2 转码失败
reasonstring转码失败原因
file_namestring视频文件名称
file_idstring媒体文件唯一标识
widthint媒体文件宽
heightint媒体文件高
cover_urlstring媒体封面地址

返回示例

  1. {
  2. "data": {
  3. "type": "thread-video",
  4. "id": "68",
  5. "attributes": {
  6. "id": 1,
  7. "user_id": 1,
  8. "thread_id": 0,
  9. "status": 0,
  10. "reason": "",
  11. "file_name": "",
  12. "file_id": "1",
  13. "width": 1,
  14. "height": 1,
  15. "cover_url": "",
  16. "updated_at": "2020-04-20T14:50:10+08:00",
  17. "created_at": "2020-04-20T14:50:10+08:00"
  18. }
  19. }
  20. }