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?
찾으시는 영화나 TV 프로그램이 없나요? 로그인 하셔서 직접 만들어주세요.
이 항목을 평가하거나 목록에 추가할까요?
회원이 아닌가요?
Omar님의 댓글
5월 3, 2024 at 4:54 오전
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님의 댓글
9월 3, 2024 at 9:09 오후
How to use this in angular