Re: [twitter-dev] Get all Followers

2011-02-15 Thread Georgooty varghese
you should use "cursor" field in follower url. in this response, you should get next and prev paging cursor values. Next time you should use this values in to your urls. On Tue, Feb 15, 2011 at 3:54 PM, Scott Wilcox wrote: > Use the provided cursors to move through your followers. > > On 15 F

Re: [twitter-dev] Get all Followers

2011-02-15 Thread Scott Wilcox
Use the provided cursors to move through your followers. On 15 Feb 2011, at 10:11, arfaRed wrote: > Hi, > > I am retrieving followers using the following API > http://api.twitter.com/1/statuses/followers/twitter.json. > But this returns 100 followers only. > What if I have more than 100 follower

Re: [twitter-dev] Get all Followers

2011-02-15 Thread Georgooty varghese
you should use pagination On Tue, Feb 15, 2011 at 3:41 PM, arfaRed wrote: > Hi, > > I am retrieving followers using the following API > http://api.twitter.com/1/statuses/followers/twitter.json. > But this returns 100 followers only. > What if I have more than 100 followers on my account. > How t

[twitter-dev] Get all Followers

2011-02-15 Thread arfaRed
Hi, I am retrieving followers using the following API http://api.twitter.com/1/statuses/followers/twitter.json. But this returns 100 followers only. What if I have more than 100 followers on my account. How to get all of them. Thanks, Arf`a -- Twitter developer documentation and resources: http

Re: [twitter-dev] Get All Followers Using twitteroauth

2010-09-09 Thread Abraham Williams
$connection = new TwitterOAuth('consumer_key', 'consumer_secret', 'access_token', 'access_token_secret'); $result100 = $connection->get('statuses/followers', array('cursor' => -1)); $result200 = $connection->get('statuses/followers', array('cursor' => $result100->next_cursor)); You will be best of

[twitter-dev] Get All Followers Using twitteroauth

2010-09-09 Thread Paulo Fernandes
Hi I'm beggining in this API and in this group. I downloaded 0.2.0-beta3 from http://github.com/abraham/twitteroauth I tryed to get all followers, but only retrieved 100 followers. How can I get all followers? I saw something about cursor, but I don't know how can I use it. Please some help wi