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.
Nem találsz egy filmet vagy egy sorozatot? Jelentkezz be és hozd létre.
Want to rate or add this item to a list?
Még nem tag?
Travis Bell válaszolt
Beküldve: 2016. december 21. 10:40
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.
waqas akram válaszolt
Beküldve: 2016. december 24. 03:16
Thanks Travis its boom :)