powered by
Retrieves a list of members for a channel associated with the authenticated user. This endpoint requires OAuth 2.0 authentication and the channel must have memberships enabled.
list_channel_members( part = "snippet", max_results = 50, page_token = NULL, mode = "all_current", has_access_to_level = NULL, filter_by_member_channel_ids = NULL, simplify = TRUE, ... )
A data.frame or list of channel members.
Parts to retrieve. Valid values are "snippet". Default is "snippet".
Maximum total number of members to return.
Specific page token to retrieve. Optional.
Member stream, `"all_current"` or `"updates"`.
Filter by a specific membership level ID. Optional.
Optional member channel IDs whose membership status should be checked. YouTube accepts at most 100 per call.
Whether to return a simplified data.frame. Default is TRUE.
Additional arguments passed to tuber_GET.
tuber_GET
https://developers.google.com/youtube/v3/docs/members/list
if (FALSE) { yt_oauth("YOUR_CLIENT_ID", "YOUR_CLIENT_SECRET", scope = "channel_memberships") members <- list_channel_members() }
Run the code above in your browser using DataLab