Is there a way to return data for multiple movie ids? I am trying to do something like this: http://api.themoviedb.org/3/movie/11,90?api_key=[blah] , but it's only returning the first movie. My main goal is to query a movie list and then get more info (such as duration) on each movie in that list. Is there just a way I can add a param to include more info in a list request?
فیلم و نمایش تلویزیونی را نمیتوانید پیدا کنید؟ به سیستم وارد شوید تا آن را ایجاد کنید.
آیا میخواهید به این مورد امتیاز دهید یا به فهرست اضافه کنید؟
عضو نیستید؟
پاسخ توسط Travis Bell
در تاریخ اوت 12, 2013 ساعت 9:36 ق.ض
Hi rustybailey,
We do not currently have the ability to query multiple ids at once.
پاسخ توسط rustybailey
در تاریخ اوت 12, 2013 ساعت 10:05 ق.ض
So if I want info on 50 movies, is themoviedb API's standard usage to send out 50 requests, or is there a more efficient way to do this?
پاسخ توسط Travis Bell
در تاریخ اوت 12, 2013 ساعت 3:42 ب.ض
Hi rustybailey,
50 requests. There is no other way.
پاسخ توسط angelxmoreno
در تاریخ سپتامبر 6, 2013 ساعت 6:11 ب.ض
One thing to note @rustybailey is the limitation of 20 simultaneous connections and the fact the curl lets you make concurrent connections using multiCurl - here is an example of it http://multicurl.nisu.org/ - this might help make those 50 calls faster
پاسخ توسط Tomáš
در تاریخ اوت 24, 2016 ساعت 12:36 ب.ض
Hi, has the situation changed anyhow after almost three years? I have a list of 15 IDs and need to show movie posters and titles. Now I do it in a loop but it is terribly slow. Please, surprise me and inform me about a new, more efficient, method.
Thank you!
پاسخ توسط Travis Bell
در تاریخ اوت 24, 2016 ساعت 12:41 ب.ض
Hi T.I.P,
No this has not changed.
پاسخ توسط nkallen
در تاریخ اکتبر 20, 2016 ساعت 12:28 ب.ض
I'm really happy with the TMDB API so far. But I really wish you had a multiget interface though! GET /movies/?id=1,2,3 would be nice and restful...
Currently my code sends parallel requests, and in order to avoid getting 429 rate limited I have to batch them at a controlled frequency. The code is a bit of a hassle and I'm sure it's more resource-intensive on your servers than you would like!
پاسخ توسط Travis Bell
در تاریخ اکتبر 20, 2016 ساعت 6:15 ب.ض
Hi nkallen,
Thanks for the note. We don't have any plans to change this right now.
پاسخ توسط Alexey
در تاریخ ژوئیه 10, 2017 ساعت 5:36 ب.ض
Another year passed, any chance? This is really necessary feature. Thanks!
پاسخ توسط Travis Bell
در تاریخ ژوئیه 10, 2017 ساعت 5:53 ب.ض
Hi Alexey, there are still no plans for this. There's some potential changes up and coming around rate limits and before that were to ever change it could make sense to look at a multi get. But for now nothing is planned.
پاسخ توسط toshik
در تاریخ سپتامبر 14, 2017 ساعت 3:31 ب.ض
i was curious any change to be able to use this ?? I started building my android app few months ago and now its been put on halt because of this can you help?
پاسخ توسط Travis Bell
در تاریخ سپتامبر 15, 2017 ساعت 6:18 ب.ض
Hi @toshik There has been no change with regards to this.
پاسخ توسط toshik
در تاریخ سپتامبر 15, 2017 ساعت 7:01 ب.ض
hi @travisbell thanks for reply
I know this is for the good and ethical practices that is one should not store any data, not even movie id,
would it be problem if i save movie id and movie name on user machine(mobile android) not on the server solely on user device as saved movies?
پاسخ توسط Travis Bell
در تاریخ سپتامبر 18, 2017 ساعت 3:44 ب.ض
We have no problems with you caching the data. That is perfectly fine.
پاسخ توسط Chris Krueger
در تاریخ سپتامبر 27, 2017 ساعت 5:16 ب.ض
I can also fully agree with the previous post! :) We need a query for multiple movies! It blow up with too much requests when my app is running :D This is my only bottleneck...