Description Usage Arguments Details Author(s) Examples
Returns a collection of zero or more channel resources that match the request criteria.
1 2 3 |
token |
Your token as returned by |
n |
Number of results to fecth. The default value is |
part |
The part parameter specifies a comma-separated list of one or more activity
resource properties that the API response will include. The default value
is |
category.id |
Specifies a YouTube guide category, thereby requesting YouTube channels
associated with that category. As returned by |
for.username |
Specifies a YouTube username, thereby requesting the channel associated
with that username. The default value is |
id |
specifies a comma-separated list of the YouTube channel ID(s) for the
resource(s) that are being retrieved. In a channel resource, the id property
specifies the channel's YouTube channel ID. The default value is |
managed.by.me |
This parameter can only be used in a properly authorized request. Note: This
parameter is intended exclusively for YouTube content partners. See scopes
under |
mine |
Set this parameter's value to true to retrieve a feed of the authenticated
user's activities. The default value is |
hl |
The hl parameter instructs the API to retrieve localized resource metadata
for a specific application language that the YouTube website supports. The
parameter value must be a language code included in the list returned by
|
max.results |
Specifies the maximum number of results that should be returned
by each API call. Acceptable values are |
on.behalf.of.content.owner |
Indicates that the request's
authorization credentials identify a YouTube CMS user who is acting on
behalf of the content owner specified in the parameter value. This parameter
is intended for YouTube content partners that own and manage many different
YouTube channels. It allows content owners to authenticate once and get
access to all their video and channel data, without having to provide
authentication credentials for each individual channel. The actual CMS
account that the user authenticates with must be linked to the specified
YouTube content owner. This parameter can only be used in a properly
authorized request. Note: This parameter is intended exclusively for
YouTube content partners. See scope under |
verbose |
If |
MUST specify at least one of the following:
category.id
for.username
id
managed.by.me
(TRUE
)
mine
(TRUE
)
John Coene jcoenep@hotmail.com
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | ## Not run:
# Authenticate
token <- youOAuth(client.id = "something.apps.googleusercontent.com",
client.secret = "XxxXX1XxXxXxxx1xxx1xxXXX")
# search channels about cats
search <- searchTube(token, query = "cats", type = "channel")
# pick random id
set.seed(19880525)
chan <- sample(search$channelId, 1)
# fetch
chan.dat <- getChannels(token, id = chan)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.