I am stuck to get result with discover parameters i am using https://api.themoviedb.org/3/discover/movie?api_key=XXX&language=en-US&sort_by=popularity.asc&page=1&with_keywords=sequel,war but found no results each time anyone help me.
Film of tv-serie niet gevonden? Meld je aan om deze toe te voegen.
Want to rate or add this item to a list?
Not a member?
Reactie van Travis Bell
op 21 december 2016 om 10:40 AM
Hi @waqas117
with_keywords
is expecting a list of keywords ids, not the actual keywords themselves.For the case of the two keywords, sequel and war, they are
9663
and6091
respectively. So, the query you're looking for is:Keep in mind, that's an 'AND' query, you could do
with_keywords=9663|6091
if you're looking for a 'OR' query.Cheers.
Reactie van waqas akram
op 24 december 2016 om 3:16 AM
Thanks Travis its boom :)