Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Movies 获取电影列表

GET/POST /v1/web/movie/list

  • =》
{ 
  "app_id": "xxx", //必填
  "lang": "en", //必填
  "code": "SA", //选填, 国家ISO代码
  "city_id": 22778,  //选填:城市ID
  "cinema_id": 65789, //选填:影院ID
  "limit": 10, //选填:默认为10, 获取数据的条数 
  "offset": 0, //可选,默认为0
  "page": 1, //可选,默认为1
}

注意:

1、code、city_id、cinema_id 三个参数均为可选,但是三个参数不能全为空;

2、limit 默认为10,最大限制为50;

3、分页方式支持:offset与page,任选一个分页方式即可;

  • 《=
{
  "success": "OK",
  "data": [{
    "cinema_id": 65789,
    "movie_id": 201814,
    "title": "Until Dawn", //电影标题
    "language": "en", //电影语言
    "runtime": 103, //播放时长(分钟)
    "genres": [{ //电影类型
      "id": "11",
      "name": "Horror"
    },
    {
      "id": "6",
      "name": "Drama"
    }],
    "summary": "One year after her sister Melanie mysteriously disappeared, Clover and her friends head into the remote valley where she vanished in search of answers. Exploring an abandoned visitor center, they find themselves stalked by a masked killer and horrifically murdered one by one…only to wake up and find themselves back at the beginning of the same evening.",
    "cover": "https://image.tmdb.org/t/p/w500/6O9nkcmZBymDXtxOGJmulqcxJdv.jpg",
    "casts": [{ //主要演员
      "id": "164fc6a6dd87047bd49fa9e6b99beba3",
      "character": "Clover",
      "name": "Ella Rubin"
    },
    {
      "id": "f40571a576cdb691fad39e1a2f806f84",
      "character": "Max",
      "name": "Michael Cimino"
    }],
    "crews": [{ //剧组成员
      "id": "59f0304e4813b9965ce197d6046166b3",
      "name": "David F. Sandberg",
      "job": "director"
    }]
  }]
}