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.
¿No encuentras una película o serie? Inicia sesión para crearla:
¿Quieres puntuar o añadir este elemento a una lista?
¿No eres miembro?
Contestado por dshalom03
el 20 de marzo de 2015 a las 06:07
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 ?
Contestado por Travis Bell
el 20 de marzo de 2015 a las 13:07
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.
Note the
{ID}
variable you need to replace along with theapi_key
andsession_id
.Contestado por dshalom03
el 21 de marzo de 2015 a las 04:02
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 ?.
Contestado por Travis Bell
el 21 de marzo de 2015 a las 09:50
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):