在一个请求中使用 Google API YouTube 分析的 YouTube 视频统计
YouTube videos stats using Google API YouTube Analytics in one request
是否可以同时获取 X 个视频的每日视频统计信息?
YT Analytics API 仅为频道提供统计信息。当然,我可以按视频 ID 过滤结果(但只有一个!)。尝试将 "video=1;video=2;video=3" 放入过滤器方法时出现错误。
来自 YouTube 分析 reports.query
端点的 documentation API,假设这是您所指的端点:
The API supports the ability to specify multiple values for the video, playlist, and channel filters. To do so, specify a separated list of the video, playlist, or channel IDs for which the API response should be filtered. For example, a filters parameter value of video==pd1FJh59zxQ,Zhawgd0REhA;country==IT restricts the result set to include data for the given videos in Italy. The parameter value can specify up to 200 IDs.
换句话说:只在视频 ID 之间使用逗号(不是分号),不要为每个 ID 重复 video
关键字并使用 ==
而不是 =
。
是否可以同时获取 X 个视频的每日视频统计信息?
YT Analytics API 仅为频道提供统计信息。当然,我可以按视频 ID 过滤结果(但只有一个!)。尝试将 "video=1;video=2;video=3" 放入过滤器方法时出现错误。
来自 YouTube 分析 reports.query
端点的 documentation API,假设这是您所指的端点:
The API supports the ability to specify multiple values for the video, playlist, and channel filters. To do so, specify a separated list of the video, playlist, or channel IDs for which the API response should be filtered. For example, a filters parameter value of video==pd1FJh59zxQ,Zhawgd0REhA;country==IT restricts the result set to include data for the given videos in Italy. The parameter value can specify up to 200 IDs.
换句话说:只在视频 ID 之间使用逗号(不是分号),不要为每个 ID 重复 video
关键字并使用 ==
而不是 =
。