List Article 获取文章列表

GET/POST /v1/web/article/list

  • =》
{ 
  "app_id": "xxx", //必填
  "lang": "en", //必填
  "classify": 0, //选填,默认为0,0表示所有,可以单个使用(支持按位或操作查询)
  "category": "xxx", //选填,默认为空
  "sub": "xxx", //选填,默认为空
  "site_id": 1002, //选填,默认为0, 表示所有
  "status": 0, //选填,默认为0,0表示所有,其它数值可以单个、按位或使用
  "offset": 0, //选填,分页或更多使用,为空时,默认为0
  "limit": 10  //选填,每次拉取条数,为空时,默认为10,最大100
}
  • 《=
{
  "success": "OK",
  "data": {
    "lang": "ar",
    "total": 912,
    "list": [{
      "id": 2476,
      "title": "The Untold Story: Sudan has twice as many pyramids as Egypt",
      "alias": "القصة غير المروية: عدد الأهرامات في السودان ضعف عدد الأهرامات في مصر",
      "on_screen": "القصة غير المروية: عدد الأهرامات في السودان ضعف عدد الأهرامات في مصر",
      "slug": "the-untold-story-sudan-has-twice-as-many-pyramids-as-egypt",
      "cover": "https://oa.sve.cc/i/ar/topstory/20240105/202401051044256633.webp",
      "category": "Culture",
      "sub": "History",
      "summary": "xxx",
      "author": "xxx",
      "publish_at": 1704442508
    }]
  }
}