I'm looking at how to add favourite movies to a user's account, the /3/account/{account_id}/favorite
takes a body object, but the docs don't say what the format is expected, how to add favourites?
Film of tv-serie niet gevonden? Meld je aan om deze toe te voegen.
Want to rate or add this item to a list?
Not a member?
Reactie van Omar
op 3 mei 2024 om 4:54 AM
It's a post request to this url 'https://api.themoviedb.org/3/account/{account_id}/favorite' then add session_id and api_key and in the body put something like this: { "media_id": 763215, "media_type": "movie", "favorite": true }
Reactie van Rishabh00
op 3 september 2024 om 9:09 PM
How to use this in angular