c# - Listing Friends — Hitting auth failure mid-process
c# - Listing Friends — Hitting auth failure mid-process So, I'm trying to the friends of all of someone's followers. Not recursively digging, just that single level. I'm able to pull the followers just fine (and it looks like it can handle more than 75k followers, so I'm 90% sure I have the rate limits fine there). But my code to pull the friends is throwing authentication errors after it returns 15 of the followers friends. In other words, in this bit of code: for (var i = 0; i < followerList.Count; i++) { await followersFriends(followerList[i]); } I'm getting this error when i == 15 : i == 15 LinqToTwitter.TwitterQueryException HResult=0x80131500 Message={"request":"/1.1/friends/ids.json","error":"Not authorized."} - Please visit the LINQ to Twitter FAQ (at the HelpLink) for help on resolving this error. It does appear to completely get 15 lists, it's the 16th that throws it. I have the feeling that this is ...