Documentation ¶
Overview ¶
Package youtubeanalytics provides access to the YouTube Analytics API.
See http://developers.google.com/youtube/analytics/
Usage example:
import "google.golang.org/api/youtubeanalytics/v1beta1" ... youtubeanalyticsService, err := youtubeanalytics.New(oauthHttpClient)
Index ¶
- Constants
- type BatchReport
- type BatchReportDefinition
- type BatchReportDefinitionList
- type BatchReportDefinitionsListCall
- type BatchReportDefinitionsService
- type BatchReportList
- type BatchReportOutputs
- type BatchReportTimeSpan
- type BatchReportsListCall
- type BatchReportsService
- type ReportsQueryCall
- func (c *ReportsQueryCall) Dimensions(dimensions string) *ReportsQueryCall
- func (c *ReportsQueryCall) Do() (*ResultTable, error)
- func (c *ReportsQueryCall) Fields(s ...googleapi.Field) *ReportsQueryCall
- func (c *ReportsQueryCall) Filters(filters string) *ReportsQueryCall
- func (c *ReportsQueryCall) MaxResults(maxResults int64) *ReportsQueryCall
- func (c *ReportsQueryCall) Sort(sort string) *ReportsQueryCall
- func (c *ReportsQueryCall) StartIndex(startIndex int64) *ReportsQueryCall
- type ReportsService
- type ResultTable
- type ResultTableColumnHeaders
- type Service
Constants ¶
const ( // View YouTube Analytics monetary reports for your YouTube content YtAnalyticsMonetaryReadonlyScope = "https://www.googleapis.com/auth/yt-analytics-monetary.readonly" // View YouTube Analytics reports for your YouTube content YtAnalyticsReadonlyScope = "https://www.googleapis.com/auth/yt-analytics.readonly" )
OAuth2 scopes used by this API.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BatchReport ¶
type BatchReport struct { // Id: The ID that YouTube assigns and uses to uniquely identify the // report. Id string `json:"id,omitempty"` // Kind: This value specifies the type of data of this item. For batch // report the kind property value is youtubeAnalytics#batchReport. Kind string `json:"kind,omitempty"` // Outputs: Report outputs. Outputs []*BatchReportOutputs `json:"outputs,omitempty"` // ReportId: The ID of the the report definition. ReportId string `json:"reportId,omitempty"` // TimeSpan: Period included in the report. For reports containing all // entities endTime is not set. Both startTime and endTime are // inclusive. TimeSpan *BatchReportTimeSpan `json:"timeSpan,omitempty"` // TimeUpdated: The time when the report was updated. TimeUpdated string `json:"timeUpdated,omitempty"` }
type BatchReportDefinition ¶
type BatchReportDefinition struct { // Id: The ID that YouTube assigns and uses to uniquely identify the // report definition. Id string `json:"id,omitempty"` // Kind: This value specifies the type of data of this item. For batch // report definition the kind property value is // youtubeAnalytics#batchReportDefinition. Kind string `json:"kind,omitempty"` // Name: Name of the report definition. Name string `json:"name,omitempty"` // Status: Status of the report definition. Status string `json:"status,omitempty"` // Type: Type of the report definition. Type string `json:"type,omitempty"` }
type BatchReportDefinitionList ¶
type BatchReportDefinitionList struct { // Items: A list of batchReportDefinition resources that match the // request criteria. Items []*BatchReportDefinition `json:"items,omitempty"` // Kind: This value specifies the type of data included in the API // response. For the list method, the kind property value is // youtubeAnalytics#batchReportDefinitionList. Kind string `json:"kind,omitempty"` }
type BatchReportDefinitionsListCall ¶
type BatchReportDefinitionsListCall struct {
// contains filtered or unexported fields
}
func (*BatchReportDefinitionsListCall) Do ¶
func (c *BatchReportDefinitionsListCall) Do() (*BatchReportDefinitionList, error)
func (*BatchReportDefinitionsListCall) Fields ¶
func (c *BatchReportDefinitionsListCall) Fields(s ...googleapi.Field) *BatchReportDefinitionsListCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type BatchReportDefinitionsService ¶
type BatchReportDefinitionsService struct {
// contains filtered or unexported fields
}
func NewBatchReportDefinitionsService ¶
func NewBatchReportDefinitionsService(s *Service) *BatchReportDefinitionsService
func (*BatchReportDefinitionsService) List ¶
func (r *BatchReportDefinitionsService) List(onBehalfOfContentOwner string) *BatchReportDefinitionsListCall
List: Retrieves a list of available batch report definitions.
type BatchReportList ¶
type BatchReportList struct { // Items: A list of batchReport resources that match the request // criteria. Items []*BatchReport `json:"items,omitempty"` // Kind: This value specifies the type of data included in the API // response. For the list method, the kind property value is // youtubeAnalytics#batchReportList. Kind string `json:"kind,omitempty"` }
type BatchReportOutputs ¶
type BatchReportOutputs struct { // DownloadUrl: Cloud storage URL to download this report. This URL is // valid for 30 minutes. DownloadUrl string `json:"downloadUrl,omitempty"` // Format: Format of the output. Format string `json:"format,omitempty"` // Type: Type of the output. Type string `json:"type,omitempty"` }
type BatchReportTimeSpan ¶
type BatchReportTimeSpan struct { // EndTime: End of the period included in the report. Inclusive. For // reports containing all entities endTime is not set. EndTime string `json:"endTime,omitempty"` // StartTime: Start of the period included in the report. Inclusive. StartTime string `json:"startTime,omitempty"` }
type BatchReportsListCall ¶
type BatchReportsListCall struct {
// contains filtered or unexported fields
}
func (*BatchReportsListCall) Do ¶
func (c *BatchReportsListCall) Do() (*BatchReportList, error)
func (*BatchReportsListCall) Fields ¶
func (c *BatchReportsListCall) Fields(s ...googleapi.Field) *BatchReportsListCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type BatchReportsService ¶
type BatchReportsService struct {
// contains filtered or unexported fields
}
func NewBatchReportsService ¶
func NewBatchReportsService(s *Service) *BatchReportsService
func (*BatchReportsService) List ¶
func (r *BatchReportsService) List(batchReportDefinitionId string, onBehalfOfContentOwner string) *BatchReportsListCall
List: Retrieves a list of processed batch reports.
type ReportsQueryCall ¶
type ReportsQueryCall struct {
// contains filtered or unexported fields
}
func (*ReportsQueryCall) Dimensions ¶
func (c *ReportsQueryCall) Dimensions(dimensions string) *ReportsQueryCall
Dimensions sets the optional parameter "dimensions": A comma-separated list of YouTube Analytics dimensions, such as views or ageGroup,gender. See the Available Reports document for a list of the reports that you can retrieve and the dimensions used for those reports. Also see the Dimensions document for definitions of those dimensions.
func (*ReportsQueryCall) Do ¶
func (c *ReportsQueryCall) Do() (*ResultTable, error)
func (*ReportsQueryCall) Fields ¶
func (c *ReportsQueryCall) Fields(s ...googleapi.Field) *ReportsQueryCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*ReportsQueryCall) Filters ¶
func (c *ReportsQueryCall) Filters(filters string) *ReportsQueryCall
Filters sets the optional parameter "filters": A list of filters that should be applied when retrieving YouTube Analytics data. The Available Reports document identifies the dimensions that can be used to filter each report, and the Dimensions document defines those dimensions. If a request uses multiple filters, join them together with a semicolon (;), and the returned result table will satisfy both filters. For example, a filters parameter value of video==dMH0bHeiRNg;country==IT restricts the result set to include data for the given video in Italy.
func (*ReportsQueryCall) MaxResults ¶
func (c *ReportsQueryCall) MaxResults(maxResults int64) *ReportsQueryCall
MaxResults sets the optional parameter "max-results": The maximum number of rows to include in the response.
func (*ReportsQueryCall) Sort ¶
func (c *ReportsQueryCall) Sort(sort string) *ReportsQueryCall
Sort sets the optional parameter "sort": A comma-separated list of dimensions or metrics that determine the sort order for YouTube Analytics data. By default the sort order is ascending. The '-' prefix causes descending sort order.
func (*ReportsQueryCall) StartIndex ¶
func (c *ReportsQueryCall) StartIndex(startIndex int64) *ReportsQueryCall
StartIndex sets the optional parameter "start-index": An index of the first entity to retrieve. Use this parameter as a pagination mechanism along with the max-results parameter (one-based, inclusive).
type ReportsService ¶
type ReportsService struct {
// contains filtered or unexported fields
}
func NewReportsService ¶
func NewReportsService(s *Service) *ReportsService
func (*ReportsService) Query ¶
func (r *ReportsService) Query(ids string, startDate string, endDate string, metrics string) *ReportsQueryCall
Query: Retrieve your YouTube Analytics reports.
type ResultTable ¶
type ResultTable struct { // ColumnHeaders: This value specifies information about the data // returned in the rows fields. Each item in the columnHeaders list // identifies a field returned in the rows value, which contains a list // of comma-delimited data. The columnHeaders list will begin with the // dimensions specified in the API request, which will be followed by // the metrics specified in the API request. The order of both // dimensions and metrics will match the ordering in the API request. // For example, if the API request contains the parameters // dimensions=ageGroup,gender&metrics=viewerPercentage, the API response // will return columns in this order: ageGroup,gender,viewerPercentage. ColumnHeaders []*ResultTableColumnHeaders `json:"columnHeaders,omitempty"` // Kind: This value specifies the type of data included in the API // response. For the query method, the kind property value will be // youtubeAnalytics#resultTable. Kind string `json:"kind,omitempty"` // Rows: The list contains all rows of the result table. Each item in // the list is an array that contains comma-delimited data corresponding // to a single row of data. The order of the comma-delimited data fields // will match the order of the columns listed in the columnHeaders // field. If no data is available for the given query, the rows element // will be omitted from the response. The response for a query with the // day dimension will not contain rows for the most recent days. Rows [][]interface{} `json:"rows,omitempty"` }
type ResultTableColumnHeaders ¶
type ResultTableColumnHeaders struct { // ColumnType: The type of the column (DIMENSION or METRIC). ColumnType string `json:"columnType,omitempty"` // DataType: The type of the data in the column (STRING, INTEGER, FLOAT, // etc.). DataType string `json:"dataType,omitempty"` // Name: The name of the dimension or metric. Name string `json:"name,omitempty"` }
type Service ¶
type Service struct { BasePath string // API endpoint base URL BatchReportDefinitions *BatchReportDefinitionsService BatchReports *BatchReportsService Reports *ReportsService // contains filtered or unexported fields }