get_all_follows: Get all follows

View source: R/users.R

get_all_followsR Documentation

Get all follows

Description

Get all follows

Usage

get_all_follows(from_id = NULL, to_id = NULL)

Arguments

from_id

A character. User ID. The request returns information about users who are being followed by the from_id user.

to_id

A character. User ID. The request returns information about users who are following the to_id user.

Value

A tibble data frame of all follower data.

References

https://dev.twitch.tv/docs/api/reference#get-clips

See Also

Other Users: get_follows(), get_schedule(), get_users()

Examples

## Not run: 
library(twitchr)

twitch_auth()

user <- get_users(login = "KowAndToilet")

all_followers <- get_all_follows(to_id = user$id)

## End(Not run)

KoderKow/twitchr documentation built on Aug. 11, 2022, 8:56 p.m.