Hi,
I am currently using TweetSharp to pull in my public timeline to my web application.
Everything is working except I don't seem to be getting any retweets that I post.
Is there a way that I can get my retweets also?
Below is a snip of the code that I am currently using to pull in my tweets.
Thanks for any help or advice!
var twitter = FluentTwitter.CreateRequest()
.Statuses()
.OnUserTimeline()
.Take(5)
.For(UserId);
var response = twitter.Request();