fujisakifujita / python-twitter

Automatically exported from code.google.com/p/python-twitter
Apache License 2.0
0 stars 0 forks source link

GetFriends and GetFollowers will only return the first page #143

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?

After a line for authentication I ran:
friends=api.GetFriends(page=2)
for friend in friends: print friend.screen_name

What is the expected output? What do you see instead?

I have > 1000 friends so i should expect to see a different list of people then 
when i run the command with page=3. Instead i just get the first 100 friends. 
The same happens with GetFollowers. I saw there was a patch for this problem 
but it would not work.

What version of the product are you using? On what operating system?

Ubuntu 10.04 , python 2.6, python-twitter 0.6.1 (according to synaptic)

Original issue reported on code.google.com by ezikialsoftware@gmail.com on 12 Jun 2010 at 7:17

GoogleCodeExporter commented 8 years ago
This is a duplicate of 113.  The page= param has been replaced by a new cursor 
parameter

Original comment by bear42 on 13 Jun 2010 at 11:42