public interface ListService
| Modifier and Type | Method and Description |
|---|---|
<any> |
statuses(Long listId,
String slug,
String ownerScreenName,
Long ownerId,
Long sinceId,
Long maxId,
Integer count,
Boolean includeEntities,
Boolean includeRetweets)
Returns a timeline of tweets authored by members of the specified list.
|
<any> statuses(Long listId,
String slug,
String ownerScreenName,
Long ownerId,
Long sinceId,
Long maxId,
Integer count,
Boolean includeEntities,
Boolean includeRetweets)
listId - The numerical id of the list.slug - You can identify a list by its slug instead of its numerical id. If you decide to
do so, note that you'll also have to specify the list owner using the owner_id or
owner_screen_name parameters.ownerScreenName - The screen name of the user who owns the list being requested by a
slug.ownerId - The user ID of the user who owns the list being requested by a slug.sinceId - 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 occurred since the since_id, the
since_id will be forced to the oldest ID available.maxId - Returns results with an ID less than (that is, older than) or equal to the
specified ID.count - Specifies the number of results to retrieve per "page."includeEntities - Entities are ON by default in API 1.1, each Tweet includes a node
called "entities." This node offers a variety of metadata about the
Tweet in a discrete structure, including: user_mentions, urls, and
hashtags.includeRetweets - When set to either true, t or 1, the list timeline will contain native
retweets (if they exist) in addition to the standard stream of tweets.
The output format of retweeted tweets is identical to the
representation you see in home_timeline.