Returns List of Requested Channel Resources
Source:R/list_channel_resources.R
list_channel_resources.Rd
Returns List of Requested Channel Resources
Usage
list_channel_resources(
filter = NULL,
part = "contentDetails",
max_results = 50,
page_token = NULL,
hl = "en-US",
...
)
Arguments
- filter
string; Required. named vector with a single valid name potential names of the entry in the vector:
category_id
: YouTube guide category that returns channels associated with that categoryusername
: YouTube username that returns the channel associated with that username. Multiple usernames can be provided.channel_id
: a comma-separated list of the YouTube channel ID(s) for the resource(s) that are being retrieved- part
a comma-separated list of channel resource properties that response will include a string. Required. One of the following:
auditDetails, brandingSettings, contentDetails, contentOwnerDetails, id, invideoPromotion, localizations, snippet, statistics, status, topicDetails
. Default iscontentDetails
.- max_results
Maximum number of items that should be returned. Integer. Optional. Default is 50. Values over 50 will trigger additional requests and may increase API quota usage.
- page_token
specific page in the result set that should be returned, optional
- hl
Language used for text values. Optional. The default is
en-US
. For other allowed language codes, seelist_langs
.- ...
Additional arguments passed to
tuber_GET
.
Value
list. If username
is used in filter
,
a data frame with columns username
and channel_id
is returned.