Timelines¶
Timelines represent a collection of tweets.
Home Timeline¶
The Home timeline contains the tweets available on the authenticated user’s home page.
// Get the tweets available on the user's home page
var homeTimelineTweets = await userClient.Timelines.GetHomeTimelineAsync();
User Timeline¶
A User timeline contains the tweets shown on a user’s page.
// Get tweets from a specific user
var userTimelineTweets = await userClient.Timelines.GetUserTimelineAsync("tweetinviapi");
Mentions Timeline¶
The Mentions timeline contains tweets where the authenticated user has recently been mentioned (tweet containing the @username
).
var mentionsTimeline = await userClient.Timelines.GetMentionsTimelineAsync();
Retweets Of Me Timeline¶
The RetweetsOfMe timeline contains the most recent Tweets authored by the authenticated user that have been retweeted by others.
var retweetsOfMeTimeline = await userClient.Timelines.GetRetweetsOfMeTimelineAsync();