This is getting annoying. I have a client account that has, according to users/show 1299 followers and 2580 friends
$connection->request(‘GET’, $connection->url(‘1.1/followers/ids.json’),
array(‘user_id’ => $app_user_id,
‘count’=>2000,
‘cursor’ => -1
));
Pulls 807 ids. I can’t believe that 492 followers are suspended out of 1299. It pulls 807 exactly, repeatedly. The equivalent friends call pulls in 1947 plus a cursor, so that makes sense.
If I drop count to 1000, everything is fine, though docs say 5000 max
I tried pulling through twurl, like Andy Piper suggested and all 1299 came through. Using tmhOAuth
Any thoughts?