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?
映画やテレビ番組が見つかりませんか?ログインして作成してください。
このアイテムを評価したり、リストに追加したりしたいですか?
メンバーではありませんか?
Omarからの返信
投稿:2024年05月03日 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 }
Rishabh00からの返信
投稿:2024年09月03日 9:09 PM
How to use this in angular