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?
Bir filmi veya diziyi bulamıyor musun? Eklemek için oturum aç.
Bu öğeyi derecelendirmek veya bir listeye eklemek ister misiniz?
Üye değil misin?
Omar adlı kullanıcıyı yanıtla
3 2024 tarihinde saat 4:54 ÖÖ'da
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 adlı kullanıcıyı yanıtla
3 a 2024 tarihinde saat 9:09 ÖS'da
How to use this in angular