incoming

fun FollowRequests.incoming(    cursor: Long? = null,     stringifyIds: Boolean? = null,     vararg options: Option): CursorJsonObjectApiAction<CursorIds, Long>

Returns a collection of numeric IDs for every user who has a pending request to follow the authenticating user.

Twitter API reference

Receiver

FollowRequests endpoint instance.

Return

CursorJsonObjectApiAction for CursorIds model.

Parameters

cursor

Causes the list of connections to be broken into pages of no more than 5000 IDs at a time. The number of IDs returned is not guaranteed to be 5000 as suspended users are filtered out after connections are queried. If no cursor is provided, a value of -1 will be assumed, which is the first "page." The response from the API will include a previous_cursor and next_cursor to allow paging back and forth.

stringifyIds

Many programming environments will not consume our Tweet ids due to their size. Provide this option to have ids returned as strings instead.

options

Optional. Custom parameters of this request.


Shorthand property to FollowRequests.incoming.

See also