List Puzzle 获取Puzzle列表

GET/POST /v1/web/puzzle/list

  • =》
{ 
  "app_id": "xxx", //必填
  "lang": "en", //必填
  "category": "xxx", //选填,默认为空
  "sub": "xxx", //选填,默认为空
  "status": 0, //选填,默认为0,0表示所有,其它数值可以单个、按位或使用
  "offset": 0, //选填,分页或更多使用,为空时,默认为0
  "limit": 10  //选填,每次拉取条数,为空时,默认为10,最大100
}
  • 《=
{
  "success": "OK",
  "data": {
    "lang": "ar",
    "total": 8,
    "list": [{
      "id": 1008,
      "history_id": 1001,
      "category": "Food",
      "sub": "Cake",
      "title": "This is just a title.",
      "alias": "This is just a alias.",
      "slug": "this-is-just-a-title",
      "bg_color": "#FF0000",
      "img": "https://xxx.com/xxx.jpg",
      "img_via": "UnSplash",
      "img_url": "https://xxx.com/xxx.jpg",
      "tags": "aaa,bbb",
      "descr": "This is just a descr",
      "descr_alias": "This is just a descr alias",
      "publish_at": 1710907382
    }]
  }
}