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.
No trobeu una pel·lícula o una sèrie? Inicieu la sessió per a crear-la.
Desitgeu valorar o afegir aquest element a una llista?
No en sou membre?
Resposta per Travis Bell
el 21 " de 2016 a les 10:40 A.M.
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.
Resposta per waqas akram
el 24 " de 2016 a les 3:16 A.M.
Thanks Travis its boom :)