键盘快捷键
高级搜索
Hi, how can I catch the german release date only with "append to response"?
I've come this far by now:
http://api.themoviedb.org/3/movie/125490?api_key=###&append_to_response=releases
Hi Winnfield,
There is no server side way to do this. Once you have the array of releases pulled down you can easily filter it locally. In Ruby (using releases as an append_to_response for example, it's as simple as:
append_to_response
country_array = response['releases']['countries'] country_array.detect { |release| release['iso_3166_1'] == 'DE' }
Cheers.
找不到电影或节目?登录并创建它吧。
登录
注册
想给这个条目评分或将其添加到片单中?
还不是会员?
注册加入社区
Travis Bell 的回复
于 2014 年 05 月 27 日 10:59上午
Hi Winnfield,
There is no server side way to do this. Once you have the array of releases pulled down you can easily filter it locally. In Ruby (using releases as an
append_to_response
for example, it's as simple as:Cheers.