Open GoogleCodeExporter opened 9 years ago
I've done those changes in twitter.GetFollowers.
Cheers,
Patricio
Original comment by patricio...@gmail.com
on 3 Apr 2009 at 2:47
Attachments:
Here is a similar patch, that can be applied to the current svn branch.
Original comment by gue...@gmail.com
on 17 Apr 2009 at 12:12
Attachments:
I've applied the patch to take a user as an optional param. The number of
followers
returned varies however. It ranges from 89, 85, 99, etc. However it is
consistent for
the same user. So if run the script on John Doe, his first page return will
always be 89.
This makes it difficult to return all the followers details of a specific user.
Original comment by steve%im...@gtempaccount.com
on 17 Jun 2009 at 4:15
Followers are the same for each page.
python-twitter-0.6.tar.gz
I'm testing this on a user who has over 500 followers:
followers1=[]
followers2=[]
followers1=api.GetFollowers(user=userID,page=1)
followers2=api.GetFollowers(user=userID,page=2)
followers1==followers2
result: True
Why is page 2 not retrieving the next set of followers?
Original comment by goodpota...@gmail.com
on 7 Mar 2010 at 6:39
goodpotatoes: it's because twitter uses cursors, not pages. they aren't
consecutive numbers. i ran into this same issue because python-twitter
currently doesn't support giving me back the next_cursor and previous_cursor.
so there's no way at all to get more than the first 100 followers. broken, for
sure.
Original comment by dpao...@gmail.com
on 27 Jun 2010 at 12:22
how do I install the patch or changes?
Original comment by vaha...@gmail.com
on 27 Apr 2012 at 1:39
Original issue reported on code.google.com by
chris.mu...@gmail.com
on 7 Mar 2009 at 9:08