Questions tagged [youtube-analytics]

YouTube Analytics let you monitor the performance of your channel and your videos with up to date metrics.

Analytics Basics

111 questions
1
vote
2 answers

Google Oauth for Backend Java Services

I've a requirement to run a background service to pull Youtube Analytics for already linked channel on a daily basis using Youtube Analytics API Since it'll be in the background, having a direct accesses with Google's Oauth services would be good…
1
vote
2 answers

Read data from Youtube Analytics API without Oauth2

I am currently writing a python script to pull information from YouTube Analytics API for a list of separate YouTube channels. The output would be, for example, count video views for each YouTube channel in last month. My initial idea was to ask…
1
vote
0 answers

Discrepancy in YouTube Analytics and YouTube Data APIs

We have an application in C# that makes use of YouTube Analytics and YouTube Data APIs to gather analytics for certain videos of a specific channel. We fetch the data for each API and store it in the database. The analytics api gives us data daily,…
1
vote
1 answer

Downloading Youtube impressions without repeated authorization

I have this piece of code to extract some metrics about my YouTube channel and create a pandas dataframe from them. import os import google.oauth2.credentials import google_auth_oauthlib.flow from googleapiclient.discovery import build from…
Mgorji
  • 81
  • 2
  • 8
1
vote
0 answers

Creating direct HTTP-request through YouTube Analytics API v2 to view the videos of the channel that were embedded on external sites

I am quite new in using Google APIs. So, the problem is that I am administrator of the YouTube channel (not the owner). And I would like to get the straffic sources that were embedded on external websites. So, I've created new project and formed a…
1
vote
0 answers

Youtube Analytics API | averageViewPercentage

I have a question about the YouTube Analytics API. I would like to know how "averageViewPercentage" is calculated. Although it is described as "The average percentage of a video watched during a video playback.", I don't what items…
1
vote
0 answers

YouTube Analytics API Report.Query by Day with Timezone

I know, there is another Topic here with a similar Question, but the main Question has not been answered yet (as far as I understand). Given, that the YouTube Analytics API is returning everything in "Pacific time zone", and I query the Data for…
1
vote
0 answers

Is it possible to use the Google api dotnet client libraries for C# / UWP to query for Youtube Analytics realtime views?

I am putting together a Windows 10 UWP app and need to get realtime views for YouTube channels using the YouTube analytics api. I can successfully get views using the Google-api-donet-client libraries, but not realtime views. Basically, the last 48…
1
vote
1 answer

A network error occurred, and the request could not be completed for Youtube Analytics API in Explorer

When I try to use Youtube Analytics API in Google API Explorer, I am getting error like below, { "error": { "code": -1, "message": "A network error occurred, and the request could not be completed." } } Request URI is going like this : GET…
1
vote
0 answers

I'd like to get a YouTube Reporting Sample Bulk Report

I'm using YouTube Reporting API. According to this API's feature, I must wait 2 days to get the result. So I'd like to know data structures and contents in advance. I appreciate if anyone has or know sample bulk reports. Thanks
1
vote
1 answer

Youtube Analytics - Creating Requests

I am trying to make a request to the youtube analytics api. and am having some trouble forming the requests so they are accepted. I am using the Google APIs Node.js Client https://github.com/google/google-api-nodejs-client and my code is as…
1
vote
0 answers

Youtube Analytics API filters not working

I am trying to retrieve viewerPercentage based on gender, ageGroup filtering by country. 'ids' => 'channel=='.$channel->channel_id, 'start-date' => $monthAgo, 'end-date' => date("Y-m-d"), 'metrics' => 'viewerPercentage', 'dimensions' =>…
Grig Dodon
  • 313
  • 1
  • 3
  • 8
1
vote
0 answers

Youtube Analytics API v3 - retrieving relative audience retention

I'm trying to retrieve information from Youtube Analytics API v3. The API allows us to retrieve two metrics about audience retention: audienceWatchRatio and relativeRetentionPerformance. The audienceWatchRatio datas perfectly match the absolute…
1
vote
0 answers

No data for audienceRetention metric in Youtube analytics API

I have a similar problem with YouTube API, that have been answered here, but even if I request data with start date when I uploaded the video, I receive only headers. Can you describe me some criteria which YouTube video must have to provide data…
1
vote
1 answer

How to get top 10 videos from your channel with the views count included in the response

So I have a ouath web app that connects to youtube. I use the youtube analytics calls to get information like number of subscribers from my channel. But right now I try to make a top 10 videos from my channel with the views count for every video…