I want to find concerts on TMDB. According to the contribution bible I should be looking for movies with the Music genre, but "Music" can also be added as a modifier to other genres. So how do I limit the (API) query to Music genre only? I can add every other genre to without_genres, but I'd rather not have to worry about other stuff getting in there come the day that TMDB adds a new genre. Is there a way to query genre more precisely, such as "Music only", or "Music required and TV Movie optional"?
找不到电影或节目?登录并创建它吧。
Travis Bell 的回复
于 2023 年 08 月 28 日 11:57上午
Hi @benfishbus, the only way I can think of is to use the combination of
with_genres
andwithout_genres
like you already mentioned.