retweetsOfMe

fun Statuses.retweetsOfMe(    count: Int? = null,     sinceId: Long? = null,     maxId: Long? = null,     trimUser: Boolean? = null,     includeEntities: Boolean? = null,     includeUserEntities: Boolean? = null,     tweetMode: TweetMode = TweetMode.Default,     vararg options: Option): JsonArrayApiAction<Status>

Returns the most recent Tweets authored by the authenticating user that have been retweeted by others. This timeline is a subset of the user's GET statuses/user_timeline.

Twitter API reference

Receiver

Statuses endpoint instance.

Return

JsonArrayApiAction for Status model.

Parameters

count

Specifies the number of records to retrieve. Must be less than or equal to 100. If omitted, 20 will be assumed.

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 tweet entities node will not be included when set to false.

includeUserEntities

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

options

Optional. Custom parameters of this request.


val Statuses.retweetsOfMe: JsonArrayApiAction<Status>

Shorthand property to Statuses.retweetsOfMe.

See also