Created
November 10, 2017 16:02
-
-
Save travisbell/c632b189ad7c6a2130702d69a6d917f8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| travisbell$ curl -v "http://api.themoviedb.org/3/movie/211672?api_key=###&language=fr" | |
| * Trying 54.243.147.233... | |
| * TCP_NODELAY set | |
| * Connected to api.themoviedb.org (54.243.147.233) port 80 (#0) | |
| > GET /3/movie/211672?api_key=###&language=fr HTTP/1.1 | |
| > Host: api.themoviedb.org | |
| > User-Agent: curl/7.54.0 | |
| > Accept: */* | |
| > | |
| < HTTP/1.1 200 OK | |
| < Access-Control-Allow-Origin: * | |
| < Access-Control-Expose-Headers: ETag, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, Retry-After | |
| < Cache-Control: public, max-age=28800 | |
| < Content-Type: application/json;charset=utf-8 | |
| < Date: Fri, 10 Nov 2017 16:01:25 GMT | |
| < ETag: "b58afc9dfeceae2ca480dfabff86dd52" | |
| < Server: openresty | |
| < Vary: Accept-Encoding | |
| < X-Memc: HIT | |
| < X-Memc-Age: 3507 | |
| < X-Memc-Expires: 25293 | |
| < X-Memc-Key: 8e313709e22d392c790439f19395555b | |
| < X-RateLimit-Limit: 40 | |
| < X-RateLimit-Remaining: 38 | |
| < X-RateLimit-Reset: 1510329693 | |
| < Content-Length: 1895 | |
| < Connection: keep-alive | |
| < | |
| * Connection #0 to host api.themoviedb.org left intact | |
| { | |
| "adult": false, | |
| "backdrop_path": "/uX7LXnsC7bZJZjn048UCOwkPXWJ.jpg", | |
| "belongs_to_collection": null, | |
| "budget": 74000000, | |
| "genres": [ | |
| { | |
| "id": 10751, | |
| "name": "Familial" | |
| }, | |
| { | |
| "id": 16, | |
| "name": "Animation" | |
| }, | |
| { | |
| "id": 12, | |
| "name": "Aventure" | |
| }, | |
| { | |
| "id": 35, | |
| "name": "Comédie" | |
| } | |
| ], | |
| "homepage": "http://universalshowtimes.com/fr/les-minions/", | |
| "id": 211672, | |
| "imdb_id": "tt2293640", | |
| "original_language": "en", | |
| "original_title": "Minions", | |
| "overview": "À la nuit des temps des temps. À l'origine, de simples organismes monocellulaires de couleur jaune, les Minions ont évolué au cours des âges au service de maîtres plus abjects les uns que les autres. Les disparitions répétitives de ceux-ci, des tyrannosaures à Napoléon, ont plongé nos mignons personnages dans une profonde dépression. Mais l'un d'eux, prénommé Kevin, a une idée. Flanqué de Stuart, l'adolescent rebelle et de l'adorable petit Bob, Kevin part à la recherche d'un nouveau patron malfaisant pour guider les siens. Nos trois Minions se lancent dans un palpitant voyage qui va les conduire à leur nouveau maître... qui s'avère être une maîtresse : Scarlet Overkill, la première super-vilaine de l'histoire. De l'Antarctique au New York des années 60, nos trois compères arrivent finalement à Londres, à l'apogée des mods, où ils vont devoir faire face à la plus terrible menace de leur existence : l'annihilation de leur espèce.", | |
| "popularity": 514.5049, | |
| "poster_path": "/sGuZHYvu0mXeQCwvJ5yzk2Yoytq.jpg", | |
| "production_companies": [ | |
| { | |
| "name": "Universal Pictures", | |
| "id": 33 | |
| }, | |
| { | |
| "name": "Illumination Entertainment", | |
| "id": 6704 | |
| } | |
| ], | |
| "production_countries": [ | |
| { | |
| "iso_3166_1": "US", | |
| "name": "United States of America" | |
| } | |
| ], | |
| "release_date": "2015-06-17", | |
| "revenue": 1156730962, | |
| "runtime": 91, | |
| "spoken_languages": [ | |
| { | |
| "iso_639_1": "en", | |
| "name": "English" | |
| } | |
| ], | |
| "status": "Released", | |
| "tagline": "Gru n'était pas leur premier méchant", | |
| "title": "Les Minions", | |
| "video": false, | |
| "vote_average": 6.4, | |
| "vote_count": 4972 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment