Twitter Mentions timeline

Mentions timeline

The GetMentionsTimeline method lets you get the most recent tweets mentioning the authenticated user. A quick example of this would look like:

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

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

    Console.WriteLine(tweet.User.Name + " (" + tweet.Id + ")");
    Console.WriteLine(tweet.Text);
    Console.WriteLine();

}