-
Notifications
You must be signed in to change notification settings - Fork 219
Timelines
linvi edited this page May 31, 2015
·
4 revisions
Timelines is at the core of Twitter. They are a collection of tweets that are based on a user. At the current time you can access 4 types of Timelines.
- Home Timeline : Tweets displayed in the authenticated user timeline.
- User Timeline : Tweets displayed in a user timeline.
- Mention Timeline : Returns the most recent mentions (tweets containing a users’s @screen_name) for the authenticated user.
- Retweets of Tweet Timeline : Returns the most recent tweets authored by the authenticating user that have been retweeted by others.
// Get the latest 40 tweets publish on your timeline
var tweets = Timeline.GetHomeTimeline();
// Get more control over the request with a HomeTimelineParameters
var homeTimelineParameter = new HomeTimelineParameters
{
MaximumNumberOfTweetsToRetrieve = 100
};
var tweets = Timeline.GetHomeTimeline(homeTimelineParameter);