Twitter search c#

Posted by Lily on Stack Overflow See other posts from Stack Overflow or by Lily
Published on 2010-04-21T19:12:24Z Indexed on 2010/04/21 19:13 UTC
Read the original article Hit count: 195

Filed under:
|
|

Hi,

I have implemented a method which manually scrapes the Search Twitter page and gets the tweets on different pages. But since there is a fast refresh rate, the method triggers an exception. Therefore I have decided to use 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 giving my credentials and retrieve from all users and not just the ones I have as friends?

Thanks!

© Stack Overflow or respective owner

Related posts about twitter

Related posts about twitterapi