键盘快捷键
高级搜索
Hi ,
Is Get_Images method broken?
https://api.themoviedb.org/3/movie/675/images?api_key=REMOVED&language=en-US
I tried this within the documentation and in code, i always get 0 backdrops and 0 posters for every movie id i try
Hi Kevin,
Make sure to take a read through the image language documentation. It explains what is happening. You're going to want to use the include_image_language param and do something like this:
include_image_language
https://api.themoviedb.org/3/movie/550/images?api_key=###&language=en-US&include_image_language=en,null
Or better yet, with append_to_response:
append_to_response
https://api.themoviedb.org/3/movie/550?api_key=###&language=en-US&append_to_response=images&include_image_language=en,null
找不到电影或节目?登录并创建它吧。
登录
注册
想给这个条目评分或将其添加到片单中?
还不是会员?
注册加入社区
Travis Bell 的回复
于 2016 年 10 月 17 日 6:41下午
Hi Kevin,
Make sure to take a read through the image language documentation. It explains what is happening. You're going to want to use the
include_image_language
param and do something like this:Or better yet, with
append_to_response
: