键盘快捷键
高级搜索
"Hello, I would like to know how I can retrieve the movies from my TMDB list, categorized by genres, and also get recommendations, but only with the movies that are in my list. All of this using the TMDB APIs.
Hi @elmanci2, you probably need to be more specific about your questions. No one can design a program for you without knowing all your requirements.
Here is a general outline
Get the items from the list: https://developer.themoviedb.org/reference/list-details
The results contain the genre ids, so group by genre id(s) (in code).
Get recommendations for whatever movies in your list you want (or all of them). This would have to be called for each movie: https://developer.themoviedb.org/reference/movie-recommendations
找不到电影或节目?登录并创建它吧。
登录
注册
想给这个条目评分或将其添加到片单中?
还不是会员?
注册加入社区
robbie3999 的回复
于 2023 年 08 月 11 日 2:01下午
Hi @elmanci2, you probably need to be more specific about your questions. No one can design a program for you without knowing all your requirements.
Here is a general outline
Get the items from the list: https://developer.themoviedb.org/reference/list-details
The results contain the genre ids, so group by genre id(s) (in code).
Get recommendations for whatever movies in your list you want (or all of them). This would have to be called for each movie: https://developer.themoviedb.org/reference/movie-recommendations