Start at this page: https://dev.twitter.com/rest/reference/get/friends/ids
I select one of “my apps”
I change the “screen_name” parameter from “twitter_api” to “mikeallen”, a user with who is following 103K users. Leaving everything else the same. Generate the Oauth request. Copy the resulting curl command to a term window (I’m using Linux). Run the curl command. It runs successfully an returns some large number of ids, but the last part of the content is this:
2712899680,71275370],“next_cursor”:0,“next_cursor_str”:“0”,“previous_cursor”:0,“previous_cursor_str”:“0”}
next_cursor is 0, as if it had reached the last page and there were no more results to obtain.
By way of contrast, when I follow the parallel procedure with the parallel api for followers - https://dev.twitter.com/rest/reference/get/followers/ids - I do get a series of usable cursors, exactly as is documented and expected.
Hence my query whether there is something wrong with the implementation of the friends/id API function.