list
suspend fun list(broadcasterId: String, userId: String? = null, cursor: String? = null, pageSize: Int? = null): Page<Follower>
Twitch API: Get Channel Followers
Fetches a single page of followers in descending order by follow date.
This endpoint will return specific follower information only if the user access token includes the moderator:read:followers scope and the user ID in the access token matches the broadcaster_id or is a moderator for the specified broadcaster.
Return
a Page containing the followers on this page and the cursor for the next page.
Parameters
broadcasterId
the broadcaster's ID.
userId
a user's ID to filter the results to a specific follower.
cursor
the cursor used to get the next page of results. Pass null to get the first page.
pageSize
the maximum number of items to return (1–100). null uses the API default (20).