powered by
Retrieves YouTube `liveBroadcast` resources owned by the authenticated user.
list_live_broadcasts( broadcast_ids = NULL, part = "snippet,status", status = NULL, mine = FALSE, broadcast_type = NULL, max_results = 50, page_token = NULL, simplify = TRUE, ... )
List or data frame with live stream information
Broadcast IDs. Supply exactly one of `broadcast_ids`, `status`, or `mine = TRUE`.
Parts to retrieve
Filter by status: `"active"`, `"all"`, `"upcoming"`, or `"completed"`.
Logical. List the authenticated user's own broadcasts.
Optional broadcast type: `"all"`, `"event"`, or `"persistent"`.
Maximum number of broadcasts to return.
Page token at which to start.
Whether to return a simplified data frame
Additional arguments passed to tuber_GET
if (FALSE) { broadcasts <- list_live_broadcasts(status = "active") broadcast <- list_live_broadcasts( broadcast_ids = "abc123", part = c("snippet", "status") ) }
Run the code above in your browser using DataLab