Ids Puzzle 获取Puzzle所有Ids

GET/POST /v1/web/puzzle/ids

  • =》
{ 
  "app_id": "xxx", //必填
  "lang": "en", //必填
  "category": "xxx", //选填,默认为空
  "sub": "xxx", //选填,默认为空
  "status": 0, //选填,默认为0,0表示所有,其它数值可以单个、按位或使用
  "latest": 0 //选填,默认为 0, 0 表示所有 (获取latest之后更新的文章)
}
  • 《=
{
  "success": "OK",
  "data": {
    "lang": "ar",
    "total": 8,
    "list": [{
      "id": 1008,
      "slug": "this-is-just-a-title",
      "updated_at": 1710907382
    }]
  }
}