我正在尝试从 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 似乎不支持此查询?