Twitter Retweets timeline

Retweets timeline

If you want to display tweets of the authenticated user that have been retweeted by other users, you can use the RetweetsOfMe method.

An example on how to use this method could look like:

// Make the call to the API
TwitterTimelineResponse response = service.Statuses.GetRetweetsOfMe();

// Iterate through the tweets
foreach (TwitterStatusMessage tweet in response.Body) {

    Console.WriteLine(tweet.User.Name);
    Console.WriteLine(tweet.Text);
    Console.WriteLine(tweet.RetweetCount + " / " + tweet.FavoriteCount);
    Console.WriteLine();

}