I am developing an .NET GUI application that links with twitter and I am using tweetinvi library to get data. I want to search people who have followers larger than the input.
For Example: when I input a number i.e. 2000 the program will return a list of people who have more than 2000 followers. How can I get this done? Thanks. Below is the Screenshot
I am the developer of Tweetinvi and I have a good knowledge of the different features provided by the Twitter REST API.
Twitter does not allow developers to search for users based on their number of followers. What you could do is to perform a simple random search and then filter.
var users = Search.SearchUsers("a").ToArray();
var usersWithLotsOfFollowers = users.Where(x => x.FollowersCount > 100).ToArray();