csfd-api icon indicating copy to clipboard operation
csfd-api copied to clipboard

Issue when parsing this film

Open zbyna opened this issue 9 years ago • 0 comments

Hi, first of all thanks for great api . :clap: I have encountered this issue: when parsing: http://csfdapi.cz/movie?search=Dobrodru%C5%BEstv%C3%AD%20u%20%C4%8Cern%C3%A9ho%20mo%C5%99e%20&type=html I obtain info without

  "year": 1972,

means this:

  {
    "id": 215221,
    "poster_url": "http://img.csfd.cz/files/images/film/posters/000/046/46650_eece27.jpg?h180",
    "names": {
      "cs": "Dobrodružství u Černého moře"
    },
    "genres": [
      "Rumunsko"
    ],
    "countries": [
      "1972"
    ],
    "authors": {
      "directors": [
        {
          "id": 42835,
          "name": "Savel Stiopul",
          "api_url": "/author/42835",
          "csfd_url": "http://www.csfd.cz/tvurce/42835"
        }
      ],
      "actors": [
        {
          "id": 38113,
          "name": "Mihai Vasile Boghita",
          "api_url": "/author/38113",
          "csfd_url": "http://www.csfd.cz/tvurce/38113"
        },
        {
          "id": 38932,
          "name": "Florin Piersic",
          "api_url": "/author/38932",
          "csfd_url": "http://www.csfd.cz/tvurce/38932"
        }
      ]
    },
    "api_url": "/movie/215221",
    "csfd_url": "http://www.csfd.cz/film/215221"
  },

When parsing from : http://csfdapi.cz/movie/215221?type=html output is with year information:

{
  "id": 215221,
  "year": 1972,
  "poster_url": "http://img.csfd.cz/files/images/film/posters/000/046/46650_eece27.jpg?h180",
  "names": {
    "cs": "Dobrodružství u Černého moře",
    "rumunsko": "Aventuri la Marea Neagra"
  },
  "countries": [
    "Rumunsko"
  ],
  "plot": "všechny komentáře uživatele \t\t\t\t/",
  "authors": {
    "directors": [
      {
        "id": 42835,
        "name": "Savel Stiopul",
        "api_url": "/author/42835",
        "csfd_url": "http://www.csfd.cz/tvurce/42835"
      }
    ],
    "actors": [
      {
        "id": 38113,
        "name": "Mihai Vasile Boghita",
        "api_url": "/author/38113",
        "csfd_url": "http://www.csfd.cz/tvurce/38113"
      },
      {
        "id": 38932,
        "name": "Florin Piersic",
        "api_url": "/author/38932",
        "csfd_url": "http://www.csfd.cz/tvurce/38932"
      },
      {
        "id": 31127,
        "name": "Marcel Anghelescu",
        "api_url": "/author/31127",
        "csfd_url": "http://www.csfd.cz/tvurce/31127"
      },
      {
        "id": 42835,
        "name": "Savel Stiopul",
        "api_url": "/author/42835",
        "csfd_url": "http://www.csfd.cz/tvurce/42835"
      },
      {
        "id": 46030,
        "name": "Carmen María Strujac",
        "api_url": "/author/46030",
        "csfd_url": "http://www.csfd.cz/tvurce/46030"
      },
      {
        "id": 46057,
        "name": "Corina Chiriac",
        "api_url": "/author/46057",
        "csfd_url": "http://www.csfd.cz/tvurce/46057"
      },
      {
        "id": 46483,
        "name": "Zephi Alsec",
        "api_url": "/author/46483",
        "csfd_url": "http://www.csfd.cz/tvurce/46483"
      }
    ]
  },
  "api_url": "/movie/215221",
  "csfd_url": "http://www.csfd.cz/film/215221"
}

zbyna avatar Sep 24 '15 20:09 zbyna