The Movie Database Support

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 replies (on page 1 of 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=###"

Can't find a movie or TV show? Login to create it.

Global

s focus the search bar
p open profile menu
esc close an open window
? open keyboard shortcut window

On media pages

b go back (or to parent when applicable)
e go to edit page

On TV season pages

(right arrow) go to next season
(left arrow) go to previous season

On TV episode pages

(right arrow) go to next episode
(left arrow) go to previous episode

On all image pages

a open add image window

On all edit pages

t open translation selector
ctrl+ s submit form

On discussion pages

n create new discussion
w toggle watching status
p toggle public/private
c toggle close/open
a open activity
r reply to discussion
l go to last reply
ctrl+ enter submit your message
(right arrow) next page
(left arrow) previous page

Settings

Want to rate or add this item to a list?

Login