问题标签 [youtube-analytics]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
2 回答
1762 浏览

php - 通过 Google PHP 库对 Youtube Analytics API 的所有请求都会导致 400 错误请求

我能够通过 API Explorer 成功地向 Youtube Analytics API 发出请求。我的代码正在尝试使用 Google PHP Client 库,特别是 Google_Service_YouTubeAnalytics 类。不幸的是,没有关于这个类的文档。

我正在客户端上设置 ID 和断言凭据。我相当有信心这是正常工作,因为如果我将私钥更改为我知道不正确的东西,我会得到:

{"code":400,"error":"Error refreshing the OAuth2 token, message: '{\n \"error\" : \"invalid_grant\"\n}'"}

但是当我插入正确的私钥时,我得到以下响应:

{"code":400,"error":"Error calling GET https:\/\/www.googleapis.com\/youtube\/analytics\/v1\/reports?ids=channel%3D%3DCHANNEL_ID&start-date=2014-09-01&end-date=2014-09-05&metrics=views%2Cuniques: (400) Invalid query. Query did not conform to the expectations."}

它没有告诉我什么是无效的查询(这将非常有帮助),所以我不知道我可能做错了什么。任何帮助表示赞赏。

这是我发出请求的代码:

0 投票
2 回答
552 浏览

ios - iOS Swift:YouTube 分析 API 上的 404 错误

我们正在尝试为我们自己的频道检索 Youtube 分析数据。我们正在使用 GTLQueryYouTubeAnalytics。这是一个使用 Xcode 6 用 Swift 编写的 iPhone 应用程序

这就是我们所拥有的:


这是我的输出:


我们在这里缺少什么?我们为 YouTubeDataAPI 运行了先前的查询,并且运行良好。

任何想法表示赞赏!

0 投票
2 回答
903 浏览

php - Youtube Analytics API PHP 查询无效。查询不符合预期

我正在尝试从服务器到服务器进行一些分析查询。我将 laravel 与https://github.com/google/google-api-php-client库一起使用。

这是我正在使用的代码:

我的问题是身份验证工作正常,但我无法让分析查询开始工作,我收到以下错误:

即使在 API 资源管理器中执行相同的查询: https ://developers.google.com/apis-explorer/#p/youtubeAnalytics/v1/youtubeAnalytics.reports.query?ids=channel%253D%253DMINE&start-date= 2014-05-01&结束日期=2014-06-30&metrics=views%252CestimatedMinutesWatched&dimensions=day&sort=day%252C-views&_h=1&

任何想法?

0 投票
1 回答
617 浏览

api - YouTube 分析 API:如何输入密钥 | 已超过未经验证使用的每日限制。继续使用需要注册

我将这个示例代码用于我的 YouTube 分析 API:

当我插入客户端 ID 时,它会显示:

已超过未经验证使用的每日限制。继续使用需要注册。

我对此进行了研究,这意味着我还必须输入 API Key。我在哪里做这个?

谢谢,

0 投票
1 回答
121 浏览

c# - 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 YouTube rounds down the estimatedMinutesWatched parameter to only one element of precision (i.e. if over 1 hour, you lose seconds-level precision). My question is if there is any way of retrieving the exact amount of time (hh::mm::ss, etc.) from the Analytics API.

0 投票
0 回答
1235 浏览

java - 执行 YouTube Analytics API 示例时出错

我已经下载了 Youtube Analytics api 和 Youtube Data Api v3 的示例命令行程序并在 eclipse 中导入。所以下面我提到了我的 OAuth 2.0 实现类的代码:

这是我得到的警告和错误:

我被困得很厉害......对此的任何帮助将不胜感激......

0 投票
1 回答
127 浏览

youtube - Youtube 分析报告更新时间戳

我在我们的应用程序中使用 Youtube Analytics API,我的客户想知道分析报告什么时候更新?文档中提到数据每天更新一次,例如每 24 小时更新一次。那么,问题是所有报告会同时更新还是滚动更新,例如某些报告在某个时间而其他报告在不同时间?

另外,我想使用报告的最后更新时间戳。是否可以获得报告的最后更新时间戳?

我在这里先向您的帮助表示感谢!

0 投票
2 回答
3115 浏览

java - 使用 YouTube API v3 从用户名 Java 获取频道 ID

我正在尝试将 YouTube 数据/分析 API 用于一个项目,但如果我不拥有它,我不知道如何获取频道 ID。我试图让所有现代音乐家/艺术家的渠道来分析它们,但似乎无处可去。

我拥有的代码只是开发者网站上的标准代码。见下文。

任何指针都会很棒。提前致谢

0 投票
1 回答
402 浏览

php - YouTube 分析 API PHP:usageLimits accessNotConfigured

我正在使用 wanze 的 [Google Analytics API PHP]。我能够设置身份验证(仅使用 Web 身份验证)和所有内容,并将令牌存储在会话中。在另一个页面上,我使用此代码查找用户登录时使用的所有帐户。

我返回了:

我在很多地方看到我需要在控制台的“推荐”部分中删除或设置所有引用,但我似乎无法在新的或旧的控制台中找到它。如果它在那里,我找不到它,你能给我一个网址或截图吗?

此外,这些是我为这个项目安装的所有 API:

API列表

提前致谢,

另外,如果您需要更多详细信息,请告诉我!

0 投票
3 回答
6281 浏览

youtube - YouTube 分析:已超出未经验证使用的每日限制。继续使用需要注册

我遵循了这个 API 参考: https ://developers.google.com/youtube/analytics/v1/sample-application

并创建了 "index.html","index.css","index.js" 文件。我已经插入了正确的 CLIENT_ID,但是当我运行“index.html”文件时,它显示以下 o/p :

在此处输入图像描述

我是 Web 开发的新手,并试图了解 API。谁能告诉我如何使这段代码工作?

index.js 的代码是这样的: