Discover Video 发掘视频列表

GET/POST /v1/web/video/discover

  • =》
{ 
  "app_id": "xxx", //必填
  "lang": "en", //必填
  "category": "xxx", //默认为空
  "sub": "xxx", //默认为空
  "status": 0, //0表示所有,其它数值可以单个使用(支持按位或操作查询)
  "limit": 10  //每次拉取条数,为空时,默认为10,最大100
}
  • 《=
{
  "success": "OK",
  "data": {
    "lang": "ar",
    "list": [{
      "id": 1000,
      "title": "xxx",
      "alias": "xxx",
      "slug": "xxx",
      "category": "xxx",
      "sub": "xxx",
      "cover_url": "https://cdn.sve.cc/i/123/xxx.jpg",
      "video_url": "https://cdn.sve.cc/i/123/xxx.mp4",
      "remark": "xxx",
      "article": {
        "id": 2011,
        "site_id": 1015,
        "alias": "زهور الجيبسوفيلا: زهور متعددة الاستخدامات في اثة",
        "slug": "gypsophila-a-versatile-flower-in-modern-floral-design-trends",
        "author": {
          "id": 1189,
          "name": "Noha Mousa",
          "alias": "نهى موسى",
          "avatar": "https://cdn.sve.cc/i/en/avatar/20240508/202405081805113559.webp"
        }
      }
    }]
  }
}
  • 注意
  1. 如果Video没有与文章关联,article节点将不会出现;
  2. 如果article没有与author关联,author节点将不会出现。