I'm am using LinqToTwitter in my application to gather tweets. For testing I now retrieve some public tweets and noticed text of tweets go missing:
Example:
Tweet in my application:
Original tweet:
Notice t.co/czD2e7Z3q1 in my application links to the original tweet and because the tweet text + t.co link would exeed the 140char limit the tweet text is shortend and ... is added.
Code
Currently I retrive tweets using this code:
var srch = (from search in twitterCtx.Search
where search.Type == Twitter.SearchType.Search &&
search.Query == "twitter" &&
search.Count == 100 &&
search.GeoCode == geocode &&
search.IncludeEntities == true
select search).SingleOrDefault();
Is there a way I can get the original tweet text without the t.co link at the end?