Save Puzzle 新建或更新Puzzle

POST /v1/platform/puzzle/save

  • =》
{
  "token": "xxx",
  "id": 0,
  "history_id":1001,
  "lang": "ar",
  "category": "Food",
  "sub": "Cake",
  "title": "This is just a title.",
  "alias": "This is just a alias.",
  "bg_color": "#FF0000",
  "img": "https://xxx.com/xxx.jpg",
  "img_via": "UnSplash",
  "img_url": "https://xxx.com/xxx.jpg",
  "tags": "aaa,bbb",
  "tags_alias": "aaa,bbb",
  "keywords":"aaa,bbb",
  "descr": "This is just a descr",
  "descr_alias": "This is just a descr alias",
  "remark": "xxx",
  "status": 0,
  "results": [{
    "title": "This is a result",
    "alias": "This is a result",
    "bg_color": "#FF0000",
    "img": "https://xxx.com/xxx.jpg",
    "img_via": "Google",
    "img_url": "https://xxx.com/xxx.jpg",
    "correct": 0
  }]
}
  • 《=
{
  "success": "OK",
  "data": {
    "id": 1002
  }
}