我试图使用tweetsharp来搜索某些特定的推文。我的代码运行良好,但它会检索截断的文本。
就像:results
这是我的代码:
public List<Tweets> serarch()
{
List<Tweets> tlist = new List<Tweets>();
var service = new TwitterService("ck", "cs");
service.AuthenticateWith("tk", "ts");
var options = new SearchOptions { Q = "#sexualassault" };
var tweets = service.Search(options);
foreach (var tweet in tweets.Statuses)
{
if (tlist.Count == 50)
break;
else
{
tlist.Add(new Tweets {
Name = tweet.User.Name,
Text = tweet.Text
});
}
}
return tlist;
}