1

我正在尝试从 YouTube Analytics API 获取报告。我需要这份报告指定特定视频的国家和日期。

此代码有效:

dimensions=country&metrics=views,estimatedMinutesWatched,averageViewDuration,averageViewPercentage,subscribersGained sort=-estimatedMinutesWatched&filters=video==VIDEO_ID

如果我只指定国家或日期维度,它会起作用。如果我指定日期和国家维度,则会引发 400 错误Bad request "The query is not supported. Check the documentation at https://developers.google.com/youtube/analytics/v1/available_reports for a list of supported queries."

这不起作用:

dimensions=country,day& metrics=views,estimatedMinutesWatched,averageViewDuration,averageViewPercentage,subscribersGained sort=-estimatedMinutesWatched&filters=video==VIDEO_ID

是否有另一种方法可以获取我正在寻找的格式的数据,因为 API 似乎不支持此查询?

4

1 回答 1

2

这是不允许的。检查文档: https ://developers.google.com/youtube/analytics/v1/channel_reports

因此,您可以查询国家维度并按天过滤,也可以查询天维度并按国家过滤

于 2013-06-04T09:11:09.147 回答