OMDb API烂番茄

Dis*_*nty 5 api curl

我相信这可能只是OMDb API中的错误。但我希望有人能以我的方式指出错误。

我正在尝试在输出中包括“烂番茄评分”。但是,无论我尝试哪种选择,我都不会得到任何帮助。

curl http://www.omdbapi.com/?t=Iron+Man&y=&plot=short&tomatoes=true&r=json
Run Code Online (Sandbox Code Playgroud)

输出:

   {
             :Title => "Iron Man",
              :Year => "2008",
             :Rated => "PG-13",
          :Released => "02 May 2008",
           :Runtime => "126 min",
             :Genre => "Action, Adventure, Sci-Fi",
          :Director => "Jon Favreau",
            :Writer => "Mark Fergus (screenplay), Hawk Ostby (screenplay), Art Marcum (screenplay), Matt Holloway (screenplay), Stan Lee (characters), Don Heck (characters), Larry Lieber (characters), Jack Kirby (characters)",
            :Actors => "Robert Downey Jr., Terrence Howard, Jeff Bridges, Gwyneth Paltrow",
              :Plot => "After being held captive in an Afghan cave, an industrialist creates a unique weaponized suit of armor to fight evil.",
          :Language => "English, Persian, Urdu, Arabic, Hungarian",
           :Country => "USA",
            :Awards => "Nominated for 2 Oscars. Another 17 wins & 52 nominations.",
            :Poster => "http://ia.media-imdb.com/images/M/MV5BMTczNTI2ODUwOF5BMl5BanBnXkFtZTcwMTU0NTIzMw@@._V1_SX300.jpg",
         :Metascore => "79",
        :imdbRating => "7.9",
         :imdbVotes => "629,489",
            :imdbID => "tt0371746",
              :Type => "movie",
          :Response => "True"
    }
Run Code Online (Sandbox Code Playgroud)

参考:http : //www.omdbapi.com/

更新资料

万一有人再次碰到这个(我)。这是tomtaoes的预期输出:

{
            :Title => "Iron Man",
             :Year => "2008",
            :Rated => "PG-13",
         :Released => "02 May 2008",
          :Runtime => "126 min",
            :Genre => "Action, Adventure, Sci-Fi",
         :Director => "Jon Favreau",
           :Writer => "Mark Fergus (screenplay), Hawk Ostby (screenplay), Art Marcum (screenplay), Matt Holloway (screenplay), Stan Lee (characters), Don Heck (characters), Larry Lieber (characters), Jack Kirby (characters)",
           :Actors => "Robert Downey Jr., Terrence Howard, Jeff Bridges, Gwyneth Paltrow",
             :Plot => "After being held captive in an Afghan cave, an industrialist creates a unique weaponized suit of armor to fight evil.",
         :Language => "English, Persian, Urdu, Arabic, Hungarian",
          :Country => "USA",
           :Awards => "Nominated for 2 Oscars. Another 19 wins & 58 nominations.",
           :Poster => "http://ia.media-imdb.com/images/M/MV5BMTczNTI2ODUwOF5BMl5BanBnXkFtZTcwMTU0NTIzMw@@._V1_SX300.jpg",
        :Metascore => "79",
       :imdbRating => "7.9",
        :imdbVotes => "635,229",
           :imdbID => "tt0371746",
             :Type => "movie",
      :tomatoMeter => "94",
      :tomatoImage => "certified",
     :tomatoRating => "7.7",
    :tomatoReviews => "266",
      :tomatoFresh => "249",
     :tomatoRotten => "17",
  :tomatoConsensus => "Director Jon Favreau and star Robert Downey Jr. make this smart, high impact superhero movie one that even non-comics fans can enjoy.",
  :tomatoUserMeter => "91",
 :tomatoUserRating => "4.2",
:tomatoUserReviews => "1072111",
              :DVD => "30 Sep 2008",
        :BoxOffice => "$318.3M",
       :Production => "Paramount Pictures",
          :Website => "http://www.ironmanmovie.com/",
         :Response => "True"
Run Code Online (Sandbox Code Playgroud)

}

Sab*_*san 4

好吧,你必须将你的网址包含在引号内。否则,会&因破坏该位置的命令而导致问题。

curl "http://www.omdbapi.com/?t=Iron+Man&y=&plot=short&tomatoes=true&r=json"
Run Code Online (Sandbox Code Playgroud)