get_report {tubern} | R Documentation |
Get Reports
Description
Lists reporting jobs that have been scheduled for a channel or content owner.
Usage
get_report(ids, metrics, start_date, end_date, currency, dimensions, filters,
include_historical_channel_data, max_results, sort, start_index, user_ip, ...)
Arguments
ids |
Named vector with two potential names: channel or contentOwner If channel, potential values are: mine or channel_id If contentOwner, potential values are: owner_id of the content |
metrics |
String. Comma-separated list of YouTube Analytics metrics, such as |
start_date |
String. Must be in YYYY-MM-DD format. |
end_date |
String. Must be in YYYY-MM-DD format. |
currency |
Optional. String. Default is USD. Specifies what earnings metrics like
|
dimensions |
String. Optional. Comma-separated list of YouTube Analytics dimensions, such as |
filters |
Named Vector. Optional. For instance, “ |
include_historical_channel_data |
Boolean. Defaults is False. “Whether the API response should include channels' watch time and view data from the time period prior to when the channels were linked to the content owner.” |
max_results |
Integer. Optional. The maximum number of rows to include in the response. |
sort |
String. Optional A comma-separated list of dimensions or metrics that determine the sort order for YouTube |
start_index |
Integer. Optional. “The 1-based index of the first entity to retrieve.” |
user_ip |
“IP address of the end user for whom the API call is being made.” |
... |
Additional arguments passed to |
Value
named list
References
https://developers.google.com/youtube/analytics/v1/reference/reports/query
Examples
## Not run:
get_report(ids = "channel==MINE", metrics = "views",
start_date = "2010-04-01", end_date ="2017-01-01")
## End(Not run)