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?
Nemůžete nalézt film nebo seriál? Přihlaste se pro jeho vytvoření.
Want to rate or add this item to a list?
Not a member?
Odpověď od Omar
03.05.2024 v 4:54 DOP.
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 }
Odpověď od Rishabh00
03.09.2024 v 9:09 ODP.
How to use this in angular