mentionsTimeline

fun Timeline.mentionsTimeline(    count: Int? = null,     sinceId: Long? = null,     maxId: Long? = null,     trimUser: Boolean? = null,     includeEntities: Boolean? = null,     includeRTs: Boolean? = null,     includeMyRetweet: Boolean? = null,     tweetMode: TweetMode = TweetMode.Default,     includeCardUri: Boolean? = null,     vararg options: Option): JsonArrayApiAction<Status>

Returns the 20 most recent mentions (Tweets containing a users's @screen_name) for the authenticating user. The timeline returned is the equivalent of the one seen when you view your mentions on twitter.com. This method can only return up to 800 tweets. See Working with Timelines for instructions on traversing timelines.

Twitter API reference

Receiver

Timeline endpoint instance.

Return

JsonArrayApiAction for Status model.

Parameters

count

Specifies the number of Tweets to try and retrieve, up to a maximum of 200. 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. We include retweets in the count, even if include_rts is not supplied. It is recommended you always send include_rts=1 when using this API method.

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 occured 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.

trimUser

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.

includeEntities

The entities node will not be included when set to false.

includeRTs

Not documented yet.

includeMyRetweet

Not documented yet.

tweetMode

Not documented yet.

options

Optional. Custom parameters of this request.


val Timeline.mentionsTimeline: JsonArrayApiAction<Status>

Shorthand property to Timeline.mentionsTimeline.

See also