twtr_statuses_home_timeline: GET statuses/home_timeline

Description Usage Arguments See Also

View source: R/statuses_home_timeline.R

Description

GET statuses/home_timeline

Usage

1
2
3
twtr_statuses_home_timeline(count = NULL, since_id = NULL, max_id = NULL,
  trim_user = NULL, exclude_replies = NULL, contributor_details = NULL,
  include_entities = NULL, ...)

Arguments

count

Specifies the number of records to retrieve. Must be less than or equal to 200. Defaults to 20. The value of count is best thought of as a limit to the number of tweets to return because suspended or deleted content is removed after the count has been applied. Example Values: 5

since_id

Returns results with an ID greater than (that is, more recent than) the specified ID. There are limits to the number of Tweets which can be accessed through the API. If the limit of Tweets has occured since the since_id, the since_id will be forced to the oldest ID available. Example Values: 12345

max_id

Returns results with an ID less than (that is, older than) or equal to the specified ID. Example Values: 54321

trim_user

When set to either true, t or 1, each tweet returned in a timeline will include a user object including only the status authors numerical ID. Omit this parameter to receive the complete user object. Example Values: true

exclude_replies

This parameter will prevent replies from appearing in the returned timeline. Using exclude_replies with the count parameter will mean you will receive up-to count tweets <c2><81>\ this is because the count parameter retrieves that many tweets before filtering out retweets and replies. Example Values: true

contributor_details

This parameter enhances the contributors element of the status response to include the screen_name of the contributor. By default only the user_id of the contributor is included. Example Values: true

include_entities

The entities node will be disincluded when set to false. Example Values: false

See Also

https://dev.twitter.com/rest/reference/get/statuses/home_timeline


yutannihilation/twihttr documentation built on May 4, 2019, 7:46 p.m.