views:

50

answers:

2

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();
A: 

I've the same problem

mostafa
+1  A: 

I think I just answered your post on the TweetSharp discussion board.

I'll copy it here in case you don't check there ...

I can tell you that it is possible through the twitter api. The user timeline endpoint supports an 'include_rts' parameter that enables this exact functionality.

For example: http://api.twitter.com/1/statuses/user_timeline.xml?screen_name=twitterapi&include_rts=true (if prompted for login, just hit cancel)

I don't know if TweetSharp has implemented that parameter or if it will get added. I don't think there are any developers working on TweetSharp anymore. I'm actually a developer from a different library, Twitterizer, filling in the support gap.

Ricky Smith
Thank you Ricky. I'm going to check out your Twitterizer library the replace TweetSharp since it is still being developed and maintained.
Richard West
Glad I could help.
Ricky Smith