I use themoviedb api for get detail movies and put him inside list view in my app but I can't find how I can Identify number of movies in my request. For Example If I want to get 20 movies when my app is first open how I can't do that !!!
Nu găsiți un film sau un serial? Autentificați-vă pentru a-l crea.
Doriți să evaluați sau să adăugați acest articol într-o listă?
Nu sunteți membru?
Răspuns de Travis Bell
pe data de 31 iulie 2015 la ora 3:19 PM
Hi mohammad,
I'm not 100% sure I understand the question (so bare with me) but you can't specify the number of items to return on any method that returns a list. They are locked at 20 items per page. You can call additional pages with the
page
param and the number of items available can be retrieved via thetotal_results
field.Cheers.