I am trying to search users through new iOS Twitter framework by using following url ..
https://api.twitter.com/1/users/search.json?q=%@&page=2&per_page=20
The api says that maximum 20 persons will be searched per_page..
https://dev.twitter.com/docs/api/1/get/users/search
So i set the page=2 to fetch 40 persons but it is still fetching 20 persons.
Is this the bug in twitter framework or there is something else that i have to do..
Help would be appreciated.
No matter what query you run, you’ll get 20 people back. The reason to set
pageis so that you can page through the results.page=1&per_page=20returns the first 20 people.page=2&per_page=20returns the next 20 people. And so on.