List Video 获取视频列表

POST /v1/platform/video/list

  • =》
{ 
  "token": "xxx", //必填
  "lang": "en", //必填
  "id": 0, //默认为0
  "category": "xxx", //默认为空
  "sub": "xxx", //默认为空
  "status": 0, //0表示所有,其它数值可以单个使用(支持按位或操作查询)
  "offset": 0, //分页或更多使用,为空时,默认为0
  "limit": 10  //每次拉取条数,为空时,默认为10,最大100
}
  • 《=
{
  "success": "OK",
  "data": {
    "total": 4,
    "list":[{
      "id": 1000,
      "title": "xxx",
      "alias": "xxx",
      "slug": "xxx",
      "category": "xxx",
      "sub": "xxx",
      "cover_url": "https://oa.sve.cc/i/123/xxx.jpg",
      "video_url": "https://cdn.sve.cc/i/123/xxx.mp4",
      "remark": "xxx",
      "topic_id": 0,
      "status": 1,
      "flag": "0",
      "created_at": 1714359193,
      "updated_at": 1714359193,
      "removed_at": 0,
      "lang": "ar"
     }]
  }
}