I implemented a method that manually deletes a Twitter Twitter page and receives tweets on different pages. But since there is a fast refresh rate, the method throws an exception. So I decided to use the TweetSharp API instead
var search = FluentTwitter.CreateRequest()
.AuthenticateAs(TWITTER_USERNAME, TWITTER_PASSWORD)
.Users()
.SearchFor("dumbledore");
var result = search.Request();
var users = result.AsUsers();
this code was on the site. Does anyone know how I can avoid providing my credentials and receiving from all users, not just those that I have as friends?
Thank!
source
share