data_channel_request | R Documentation |
This is a function to make API calls to the YouTube Data API for channel specific data.
While it can be called directly, it is primarily intended to help get lists of videos within
a channel. For more in-depth use of the Data API, please refer to tuber
. For
more details on the following arguments, please refer to
https://developers.google.com/youtube/v3/docs/channels/list
data_channel_request(
part = NULL,
categoryId = NULL,
forUsername = NULL,
hl = NULL,
id = NULL,
managedByMe = NULL,
maxResults = 5,
mine = NULL,
onBehalfOfContentOwner = NULL,
pageToken = NULL,
token = getOption("YouTube_Token")
)
part |
Required. String. |
categoryId |
String. |
forUsername |
String. |
hl |
String. |
id |
String. |
managedByMe |
String. |
maxResults |
Integer. |
mine |
String. |
onBehalfOfContentOwner |
String. |
pageToken |
String. |
token |
Required. |
data.frame
## Not run:
data_channel_request(part = "contentDetails",
mine = "true")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.