Get all follows
get_all_videos(
id = NULL,
user_id = NULL,
game_id = NULL,
language = NULL,
period = NULL,
sort = NULL,
type = NULL,
clean_json = TRUE
)
A string. Required (Read Documentation for more information). ID of the video being queried. Limit: 100. If this is specified, you cannot use any of the optional query parameters below.
A string. Required (Read Documentation for more information). ID of the user who owns the video. Limit 1.
A string. Required (Read Documentation for more information). ID of the game the video is of. Limit 1.
A string. Optional. Language of the video being queried. Limit: 1.
A string. Optional. Period during which the video was created. Valid values: "all", "day", "week", "month". Default: "all".
A string. Optional. Sort order of the videos. Valid values: "time", "trending", "views". Default: "time".
A string. Optional. ype of video. Valid values: "all", "upload", "archive", "highlight". Default: "all".
A logical. If TRUE
, clean and tidy the data. If FALSE
, return the result of httr::content
.
Other Videos:
get_videos()
if (FALSE) {
library(twitchr)
twitch_auth()
all_videos <- get_all_videos(user_id = 613890167)
}