Soporte de The Movie Database

Hi, can anybody help ?, I keep geting status code 34 , "The resource you requested could not be found." errors.

I am trying to set a movie favorite. The url im using is:

https://api.themoviedb.org/3/movie/favorite?api_key=xxx&session_id=xxx

and im sending this message body:

{
    "media\_type": "movie",
    "media\_id": "50963-deep-jaws",
    "favorite": true
}

Is there something im doing wrong ? Thanks.

4 respuestas (en la página 1 de 1)

Jump to last post

Hi, ive tried that too and its not working still. Looking at the documentation im not sure if the request url needs to be"

https://api.themoviedb.org/3/movie/favorite?api_key=xxx&session_id=xxx or https://api.themoviedb.org/3/account/movie/favorite?api_key=xxx&session_id=xxx or https://api.themoviedb.org/3/50963/favorite?api_key=xxx&session_id=xxx

Can anyone tell me ?

Roby's example won't quite work as you need to pass the media_id in as an integer, but you also need to be interacting with the account, not a movie.

curl -H "Accept: application/json" -H "Content-Type: application/json" -d \
  "{'media_type': 'movie', 'media_id': 550, 'favorite': true}" \
  "https://api.themoviedb.org/3/account/{ID}/favorite?api_key=###&session_id=###"

Note the {ID} variable you need to replace along with the api_key and session_id.

Great thanks for you help, its working for me now. One thing I've noticed is that adding a favourite works instantly but so far removing a favourite by setting favourite to false in the request has not worked, do you know why that is ?.

Hi dshalom03,

I'm not sure as my tests are working properly. To be sure, you're setting it as a boolean and not a string, correct? Both of these calls are working for me (you can easily see it working on the website):

curl -H "Accept: application/json" -H "Content-Type: application/json" -d \
    "{'media_type': 'movie', 'media_id': 550, 'favorite': true}" \
    "https://api.themoviedb.org/3/account/{ID}/favorite?api_key=###&session_id=###"

curl -H "Accept: application/json" -H "Content-Type: application/json" -d \
    "{'media_type': 'movie', 'media_id': 550, 'favorite': false}" \
    "https://api.themoviedb.org/3/account/{ID}/favorite?api_key=###&session_id=###"

¿No encuentras una película o serie? Inicia sesión para crearla:

Global

s centrar la barra de búsqueda
p abrir menú de perfil
esc cierra una ventana abierta
? abrir la ventana de atajos del teclado

En las páginas multimedia

b retrocede (o a padre cuando sea aplicable)
e ir a la página de edición

En las páginas de temporada de televisión

(flecha derecha) ir a la temporada siguiente
(flecha izquierda) ir a la temporada anterior

En las páginas de episodio de televisión

(flecha derecha) ir al episodio siguiente
(flecha izquierda) ir al episodio anterior

En todas las páginas de imágenes

a abrir la ventana de añadir imagen

En todas las páginas de edición

t abrir la sección de traducción
ctrl+ s enviar formulario

En las páginas de debate

n crear nuevo debate
w cambiar el estado de visualización
p cambiar público/privado
c cambiar cerrar/abrir
a abrir actividad
r responder al debate
l ir a la última respuesta
ctrl+ enter enviar tu mensaje
(flecha derecha) página siguiente
(flecha izquierda) página anterior

Configuraciones

¿Quieres puntuar o añadir este elemento a una lista?

Iniciar sesión