getFollowedStreams

suspend fun getFollowedStreams(userId: String, cursor: String? = null, pageSize: Int? = null): Page<Stream>

Twitch API: Get Followed Streams

Gets a single page of live streams of broadcasters that the user follows.

Return

a Page of Stream objects.

Parameters

userId

the ID of the user whose list of followed streams you want to get. This ID must match the user ID in the access token.

cursor

the cursor used to get the next page of results.

pageSize

the maximum number of items to return per page (1-100, default 100). Null uses the API default.