Hi:
I want to search users by term but no specific method developed for this.
I have surfed the web and I have found this:
TwitterAccessor.ExecuteGETQuery<IEnumerable<IUserDTO>>("https://api.twitter.com/1.1/users/search.json?q=" + search);
This works ok but I want the total results of the query.
- How to get this value?
- How to get the rate limit to store the results?
Thanks in advance
Regards
Comments: ** Comment from web user: linvi **
I want to search users by term but no specific method developed for this.
I have surfed the web and I have found this:
TwitterAccessor.ExecuteGETQuery<IEnumerable<IUserDTO>>("https://api.twitter.com/1.1/users/search.json?q=" + search);
This works ok but I want the total results of the query.
- How to get this value?
- How to get the rate limit to store the results?
Thanks in advance
Regards
Comments: ** Comment from web user: linvi **
Hi,
If you use the latest version of Tweetinvi you should be able to search for users using the following code:
``` c#
var users = Search.SearchUsers("tweetinvi");
```
As per rate limits, I'd suggest you read the [following](https://tweetinvi.codeplex.com/documentation?version=49#RateLimits).
Please use the discussions tab for this kind of request. Issues is usually reserved to bugs.
Cheers,
Linvi