This works similary for "with_people" and for "with_keywords" - in both case you must use the numerical ID of the person/keyword. This is true even though the API reference for Discover->Movie, for example, states that these values are strings. I tried with_keywords using both words (such as "Batman") and out of range numbers (such as "2"), but the first page of roughly 832,000 results were returned. Only when using a valid keyword ID (such as 4344 for "musical") will this work.
Contestado por codenametyler
el 8 de febrero de 2019 a las 06:57
correct me if am wrong, we can use the filters in movie discovery to achieve it. https://developers.themoviedb.org/3/discover/movie-discover
Contestado por Travis Bell
el 8 de febrero de 2019 a las 15:57
Hi @codenametyler,
Yes, you can use /discover. You'll want to look at using the
with_people
filter. Looking at Brad Pitt as an example:Contestado por codenametyler
el 11 de febrero de 2019 a las 00:52
Hello @travisbell ,
that exactly what i did, with an autocomplete to get the peopleID. XD
Cheers
Contestado por msheliga1
el 22 de diciembre de 2023 a las 16:25
This works similary for "with_people" and for "with_keywords" - in both case you must use the numerical ID of the person/keyword. This is true even though the API reference for Discover->Movie, for example, states that these values are strings. I tried with_keywords using both words (such as "Batman") and out of range numbers (such as "2"), but the first page of roughly 832,000 results were returned. Only when using a valid keyword ID (such as 4344 for "musical") will this work.
Contestado por Travis Bell
el 22 de diciembre de 2023 a las 16:48
The docs state strings because values like "9663|9748" and "9663,9748" are valid in order to issue an
OR
orAND
query.