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 !!!
찾으시는 영화나 TV 프로그램이 없나요? 로그인 하셔서 직접 만들어주세요.
이 항목을 평가하거나 목록에 추가할까요?
회원이 아닌가요?
Travis Bell님의 댓글
7월 31, 2015 at 3:19 오후
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.