Assistance de TMDB

I am new to the use of APIs and am trying to rework an example I found for v2.1 or 3.0. I'm using jquery. Here is what I was using in 2.1: $.getJSON("http://api.themoviedb.org/2.1/Movie.search/en/json/API_KEY/" + film + "?callback=?", function (response) { ..etc...

How do I rephrase that for v3?

Thanks. Ed

4 réponses (sur la page 1 sur 1)

Jump to last post

Hi Ed,

The updated API request paths are all documented on the documentation website. Make sure to read through and understand the differences.

Here's a quick movie search example you can see: http://dev.travisbell.com/play/tmdb.html

Please note you will have to enter your own API key. This is just mock code.

Thanks. Both your original and updated response were very helpful. Let me ask one questions to help me understand. (I now understand after seeing your example page and looking at the source. response.results[0].id is what I wanted. (I had expected response to be an array, but now I remember reading the "response" to the $.getJSON is a js object

  1. so if I do $.getJSON("https://api.themoviedb.org/3/search/movie?api_key=f8c4016803faf5e7f424abe98a04b8d9&query=fight+club", function (response) {

            console.log(response);
    

    }); I get the JSON data back and look at the data tree.

  2. if I try to then get the movie id out of the JSON, I am stumped. I have tried console.log(response[0].id) console.log(response[0]results[0].id) , console.log(results[0].id) and I always get an error. I must be reading the JSON "tree" wrong

Thanks for any help. I feel like understanding this will be the big hurdle for me to overcome in understanding how to use JSON and the API. ( at least I hope so.)

Ed

Ed,

Not sure if you have figured out your problem yet, but thought I could be of some help.

First I would recommend reading through a tutorial or two on JSON to understand the format. This page gives a nice brief introduction to JSON.

The search request you are making to the API returns 6 movies in the response. It seems like you are trying to get the ID of the first movie in the results (you can also loop through the movies as they are in an array). The search results are listed in the results (which is an array) property of the response JSON object.

Example to get the ID of the first movie returned in the search results:

console.log(response.results[0].id);

Jason: Thanks. Once I sorted out that "response" was an object and not an array but that it contains the array "results" I was all set. Thanks for the reply. Ed

Un film, une émission télévisée ou un artiste est introuvable ? Connectez-vous afin de créer une nouvelle fiche.

Général

s Mettre le curseur dans la barre de recherche
p Ouvrir le menu du profil
esc Fermer une fenêtre ouverte
? Ouvrir la fenêtre des raccourcis clavier

Sur les pages des médias

b Retour (ou vers le parent si faisable)
e Afficher la page de modification

Sur les pages des saisons des émissions télévisées

Afficher la saison suivante (flèche droite)
Afficher la saison précédente (flèche gauche)

Sur les pages des épisodes des émissions télévisées

Afficher l'épisode suivant (flèche droite)
Afficher l'épisode précédent (flèche gauche)

Sur toutes les pages des images / photos

a Ouvrir la fenêtre d'ajout d'image / photo

Sur toutes les pages de modifications

t Ouvrir le sélecteur de traduction
ctrl+ s Envoyer le formulaire

Sur les pages des discussions

n Créer une nouvelle discussion
w Basculer le statut de suivi
p Basculer publique / privée
c Basculer fermer / ouvrir
a Ouvrir l'activité
r Répondre à la discussion
l Afficher la dernière réponse
ctrl+ enter Envoyer votre message
Page suivante (flèche droite)
Page précédente (flèche gauche)

Paramètres

Vous souhaitez évaluer ou ajouter cet élément à une liste ?

Connexion