You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.
The GetListMembers call is returning only 100 members (default value for the GetListMembersPaged), because for some reason, that last call always returns the same value for next_cursor and previous_cursor, so the comparison next_cursor == previous_cursor is being always true, thus making the loop to break and return only the first page.
Don't know if it's due to a Twitter API change or something, but according to the latest docs in the Twitter API the only way to check whether we have reached the bottom of the list is by comparing next_cursor to 0:
"You will know that you have requested the last available page of results when the API responds with a next_cursor = 0"
My actual call is: auth.api.GetListMembers(None,slug,user,None,False,False)
The text was updated successfully, but these errors were encountered:
The GetListMembers call is returning only 100 members (default value for the GetListMembersPaged), because for some reason, that last call always returns the same value for
next_cursor
andprevious_cursor
, so the comparisonnext_cursor == previous_cursor
is being always true, thus making the loop to break and return only the first page.Don't know if it's due to a Twitter API change or something, but according to the latest docs in the Twitter API the only way to check whether we have reached the bottom of the list is by comparing next_cursor to 0:
My actual call is:
auth.api.GetListMembers(None,slug,user,None,False,False)
The text was updated successfully, but these errors were encountered: