Hi,
I just requested an individual developer api_key, which I instantly got.
I am know trying to use it on http://docs.themoviedb.apiary.io/. What I did so far:
session_id
using my api_key
and request_token
api_key
, query
= "The Martian" on the Mock Server. The only result I get is about "Fight Club".What I am trying to do is to get a list of movie corresponding to "The Martian".
Also, when I try the same requests on Production, I get an error message saying:
{ "status_code": 7, "status_message": "Invalid API key: You must be granted a valid key." }
Am I doing something wrong?
Thanks in advance for your help. Thomas
Un film, une émission télévisée ou un artiste est introuvable ? Connectez-vous afin de créer une nouvelle fiche.
Vous souhaitez évaluer ou ajouter cet élément à une liste ?
Pas encore membre ?
Réponse de thomagr
le 19 novembre 2015 à 06h40
Hi Salvador,
Thank you very much for your answer. As mentioned in my first post, I was using http://docs.themoviedb.apiary.io/ (Console mode), so I didn't type any code yet as I wanted to check if it was delivering what I needed.
Thanks. Thomas
Réponse de Travis Bell
le 19 novembre 2015 à 10h30
Hi thomagr,
You're going to have trouble using Apiary's console because our docs haven't been updated to their latest version which is required to use HTTP parameters. For regular (non account/guest session) requests you only need an API key. You can see your API key is working by making a HTTP request in your browser (skip Apiary altogether, replace ### with your API key):
https://api.themoviedb.org/3/search/movie?api_key=###&query=the+martian
Cheers.