For the below query the Include_video parameter is always returning false even if I set it to True?
https://api.themoviedb.org/3/discover/movie?api_key=&language=en-US&sort_by=popularity.desc&include_adult=false&include_video=true&page=1&primary_release_date.lte=2018&year=2018
Não consegue encontrar um certo filme ou série? Inicie sessão e adicione-o.
Deseja classificar ou adicionar este item a uma lista?
Ainda não é um membro?
Resposta de Travis Bell
em 23 março 2018 às 5:05 PM
Hi @conan1,
include_video
is a filter on thevideo
attribute and doesn't have anything to do with returning custom fields. You can read about what entries classified as videos are here: https://www.themoviedb.org/bible/movie#59f73b759251416e71000005Resposta de conan1
em 23 março 2018 às 7:39 PM
Thanks @travisbell
Could you recommend me the best way to pull video attribute from an output of /movie/latest call? I noticed there is /movie/{movie_id}/videos but this will only give me one video id for every one movie request
Resposta de Travis Bell
em 26 março 2018 às 4:43 PM
Yes, unfortunately that's the only way to do it. There's no way to query video information from anywhere other than the /videos method. You will have to iterate over the ids to get the video information. Keep in mind you can use
append_to_response
: