i want to get more than 20 users using the the twitter api in a single request is there any parameter that specifies it?
i am using this api http://api.twitter.com/1/Barelyme/Politics/members.xml?cursor=-1
i want to get more than 20 users using the the twitter api in a single request is there any parameter that specifies it?
i am using this api http://api.twitter.com/1/Barelyme/Politics/members.xml?cursor=-1
According to the Twitter List API Docs:
http://apiwiki.twitter.com/Twitter-REST-API-Method:-GET-list-members
You cant get more than 20 in a single request.
If you're using twitteroauth by abraham, you can iterate through the pages of list members (this example assumes $connection is already defined by a functional implementation of twitteroauth):
This one worked for me with Abraham's Twitteroauth
Probably not though, you can poll multiple times > 1 for more data.
Given that twitter said you can't do it, you Probably can't