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 !!!
Can't find a movie or TV show? Login to create it.
Want to rate or add this item to a list?
Not a member?
Reply by Travis Bell
on ліпень 31, 2015 at 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.