List Guess 获取Guess列表

GET/POST /v1/web/guess/list

  • =》
{ 
  "app_id": "xxx", //必填
  "lang": "en", //必填
  "type": 0,  //0表示所有,其它数值可以单个使用(支持按位或操作查询)
  "category": "xxx", //默认为空
  "sub": "xxx", //默认为空
  "status": 0, //0表示所有,其它数值可以单个使用(支持按位或操作查询)
  "offset": 0, //分页或更多使用,为空时,默认为0
  "limit": 10  //每次拉取条数,为空时,默认为10,最大100
}
  • 《=
{
  "success": "OK",
  "data": {
    "total": 10,
    "lang": "ar",
    "list": [{
      "id": 1028,
      "category": "Animals",
      "sub": "Wildlife",
      "question": "How big is tarsier monkey",
      "question_alias": "ما هو حجم القرد التارسير؟",
      "answer": "It's small, 10-15cm",
      "answer_alias": "انها صغيرة، 10-15 سم",
      "guess_imgs": "https://wallpaper.lockscreen.cc/i/u/20231117/202311171224418861.png",
      "guess_img_via": "xxx",
      "real_img": "https://wallpaper.lockscreen.cc/i/u/20231117/202311171225062644.gif",
      "real_img_via": "xxx",
      "publish_at": 1700195144
    }]
  }
}