Hello, is it possible to somehow get all movies at once? Because I'm building app, and it will be nice to fill it with already released movies.
Thanks
btw. I'm using this bundle https://github.com/php-tmdb/symfony
لم تجد الفلم أو المسلسل ؟ سجل دخولك و انشئها
هل تريد تقييم او اضافة هذا العنصر للقائمة؟
لست عضو؟
رد بواسطة Travis Bell
بتاريخ يناير 6, 2017 في 1:27 صباحا
There's no automatic way, no. You'll have to iterate over the movies you want to import manually. You could do this by building a /discover/movie query and iterating over the results and bring in the data you want that way.
رد بواسطة Bogdan
بتاريخ يناير 6, 2017 في 3:19 صباحا
Thanks, one more question. I'm calling movie info. in my native language and it doesn't show actors, images, etc...(I don't need it in my language). So how can I get movie name in my language, but with actors, etc.. in original/english?
Better question is if is it possible to do it at once?
رد بواسطة Travis Bell
بتاريخ يناير 6, 2017 في 11:00 صباحا
The base movie info method does not return cast or image information. You will need to call other requests for that.
I would suggest giving this article a read, as well as this one. They outline how you can accomplish your question.