Twitter Home timeline

Home timeline

Calling the GetHomeTimeline the API will respond with the most recent tweets of the home timeline of the authenticated user. The home timeline is what the user sees when going to the root of twitter.com.

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

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

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

}