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.
Non riesci a trovare un film o una serie Tv? Accedi per crearlo.
Vuoi valutare o aggiungere quest'elemento a una lista?
Non sei un membro?
Risposta da Travis Bell
il 21 dicembre, 2016 alle 10:40AM
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.
Risposta da waqas akram
il 24 dicembre, 2016 alle 3:16AM
Thanks Travis its boom :)