I am using tweetsharp library to retrieve tweets of a particular hashtag
var service = new TwitterService(Consumer Key, Consumer Secret);
service.AuthenticateWith("Access Token", "AccessTokenSecret");
TwitterSearchResult tweets = service.Search(new SearchOptions { Q = "#Pride",Lang="en"});
IEnumerable<TwitterStatus> status = tweets.Statuses;
foreach (var item in status)
{
Console.WriteLine(item.User.ScreenName + " " + "Says:" + "\n" + item.Text+"\n"+ "ReTweeted:"+" "+item.RetweetCount);
}
I am able to retrieve tweets from above code snippet but it only returns 100 tweets, seems like twitter restrict it to 100 tweets. Can anybody here tell me how to retrieve all the tweets of a particular hashtag.