tweetsharp搜索

时间:2013-11-12 12:06:45

标签: c# twitter tweetsharp

我正在使用tweetsharp搜索公开帖子。 我正在使用以下代码进行搜索:

TwitterSearchResult tsr = Service.Search(new SearchOptions() { Q = keyword, Resulttype = TwitterSearchResultType.Mixed, IncludeEntities=false});

这是我的问题,为什么我没有得到与Twitter网站上的api相同的结果。 如果我使用例如“redbull”作为关键字,我会从tweetharp收到来自twitter网站的完全不同的推文。

亲切的问候 马努

2 个答案:

答案 0 :(得分:1)

var results = Servis.Search(new SearchOptions {Q =“cnn”,Count = 30,Resulttype = TwitterSearchResultType.Mixed,IncludeEntities = false});

答案 1 :(得分:0)

Twitter基本上可以通过3种方式返回搜索内容: 最近(包含搜索字词的最新帖子) 热门(包含搜索词的热门帖子) 混合(最多元化的结果)

尝试使用这段代码:

TwitterSearchResult tsr = Service.Search(new SearchOptions() { Q = keyword, Resulttype = TwitterSearchResultType.Recent});