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
0
votes
1 answer

Getting exact time with YouTube Analytics: estimatedMinutesWatched

I'm attempting to brew a YouTube Analytics client for personal use to prevent me from having to log everything manually. I'll probably end up writing it in C#, but that isn't necessarily important. The thing that I notice is the Analytics page on…
ecfedele
  • 306
  • 3
  • 15
0
votes
1 answer

YouTube Analytics API: How to enter key | Daily Limit for Unauthenticated Use Exceeded. Continued use requires signup

I am using this sample code for my YouTube analytics API: (function() { // Retrieve your client ID from the {{ Google Cloud Console }} at // {{ https://cloud.google.com/console }}. var OAUTH2_CLIENT_ID = 'YOUR_CLIENT_ID'; var OAUTH2_SCOPES =…
0
votes
2 answers

iOS Swift: 404 Error on YouTube Analytics API

We are trying to retrieve Youtube analytics data for our own channel. We're using GTLQueryYouTubeAnalytics. This is an iPhone App written in Swift using Xcode 6 This is what we have: var scope = "https://www.googleapis.com/auth/youtube…
0
votes
1 answer

invalid client error from YouTube Analytics API

Original I am trying to get top 10 videos in my channel from YouTube, so I followed the sample code from Google: https://developers.google.com/youtube/analytics/v1/code_samples/python#retrieve_top_10_videos_by_viewcount I have installed all packages…
Boxuan
  • 4,937
  • 6
  • 37
  • 73
0
votes
0 answers

Youtube Analytics API- Javascript

I was trying out the YouTube Analytic API. On loading the webpage I am getting nothing. The tools (Ctrl+Shift+I) provided by Chrome show me: Failed to execute 'postMessage' on 'DOMWindow': The target origin provided ('file://') does not match the…
0
votes
0 answers

Latency retrieving data from YouTube Analytics API

This question was asked and answered back in 2012, but things have changed and I'm looking for more of a concrete answer. How much latency should I expect when accessing data from the YouTube Analytics API for the previous day? Note this is NOT the…
0
votes
2 answers

Youtube Analytics Updating Issue?

Recently, i have been playing around with the youtube api. Every hour, i allow the the user to call the API for new data. There are two main metrics that i need. Yesterday's View Yesterday's Subscribers Today, i made a GET request along the lines…
Hunter Mitchell
  • 7,063
  • 18
  • 69
  • 116
0
votes
1 answer

How to get analytics of a specific video of youtube daywise in java?

I have used you tube analytics api in which i can get analytics of channel and content owners by daywise but i want to get analytics of a specific video of youtube daywise. How to get it ?
dasamit7
  • 105
  • 1
  • 1
  • 10
0
votes
0 answers

YouTube API - analytics v 1 report returning 500 Internal Server Error

Hi All i'm having an application which pulls YouTube analytics data but it is not working from sometime. The details are below with code for (int ISOCountryCode = 0; ISOCountryCode < ds.Tables[0].Rows.Count; ISOCountryCode++) { …
0
votes
1 answer

Use Youtube Analytics API with Google Script using a channel owned by a different account

I have two Youtube channels (A & B), each with a different Google account. Then, I have a third Google account (C) with all my Google Apps Script files in Drive. I want to write a script in account C to retrieve data with a Google Apps Script from…
user3058709
  • 31
  • 1
  • 1
  • 3
0
votes
1 answer

Youtube Analytics API Issue?

When reading through the Youtube API, i noticed that the base url for requestions was using version 3 https://www.googleapis.com/youtube/analytics/v3/, However, when i was using the youtube ANalytics API PHP class, the URL being requested was…
0
votes
1 answer

Invalid channel Id return by youtube service api

I am trying to get a list of my youtube channels from a java app using the com.google.api.services.youtube.YouTube class. . First of all I have enabled the Service Account credentials (https://console.developers.google.com > Credentials ) and I…
0
votes
1 answer

Getting started with the YouTube Analytics API?

How can I "link" a person's youtube account to an account on my website? I am trying to get Analytics from videos, how much money they have made, etc. I know i am supposed to be using the YouTube Analytics API, but I see tons of different…
Hunter Mitchell
  • 7,063
  • 18
  • 69
  • 116
0
votes
1 answer

Youtube Earning Reports and Youtube CMS Account

I am trying to Fetch earning reports for my channel i created. I have registered my self as a youtube partner, i have linked my adsense account to my channel. Now, when i try to fetch the Reports for earnings, it shows me insufficient…
0
votes
1 answer

How to retrieve data from YouTube Analytics API without user action?

I would to create a script launched by a cron job that periodically store data about my channel in a file. Those data are retrieved via YouTube Analytics API (not the ordinary YouTube API). How can i achieve this result? Are service access…