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
client.Users.GetFollowersIterator( new GetFollowersParameters(userName)) returns an iterator with IUser information in it.
client.Users.GetFriendIdsIterator( new GetFriendIdsParameters(userName)) just returns the id's per page, so I have to do an extra call to get the user information. This slows down the performance by a lot.
Am I missing something here?
The text was updated successfully, but these errors were encountered:
https://twitter.com/Jeroenvvl/status/1608828247973978113 shows what I have done so far. I managed to work around the performance problem by calling the API directly after creating a custom FriendsDto from a sample json response. That works, but it would be nicer if I could stick to the TweetInvi methods.
First of all, I really like the library :-)
client.Users.GetFollowersIterator( new GetFollowersParameters(userName)) returns an iterator with IUser information in it.
client.Users.GetFriendIdsIterator( new GetFriendIdsParameters(userName)) just returns the id's per page, so I have to do an extra call to get the user information. This slows down the performance by a lot.
Am I missing something here?
The text was updated successfully, but these errors were encountered: