Youtube Analytics报告更新了时间戳

时间:2014-12-05 15:43:40

标签: youtube youtube-api youtube-analytics

我在我们的应用中使用Youtube Analytics API,我的客户想知道分析报告何时更新?文档中提到,每24小时更新一次数据。那么,问题是所有报告是否会同时更新,或者它们是否会在滚动的基础上更新,例如某些时间的某些报告以及其他时间的其他报告?

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

提前感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

如果您应该使用Youtube API获取特定作业的报告列表(check here

示例结果如下:

```  “报告”:[   {    “id”:“392226189”,    “jobId”:“0e2184aa-eaec-4377-94d9-bo8ff5dcd020”,    “startTime”:“2016-08-19T07:00:00Z”,    “endTime”:“2016-08-20T07:00:00Z”,    “createTime”:“2016-11-23T03:26:37.232661Z”,    “downloadUrl”:enter code herehttps://youtubereporting.googleapis.com/v1/media/CHANNEL/Vtt8H9XtcLB1G79QUCgdu0g/jobs/0e2184aa-eaec-4377-94d9-bo8ff5dcd020/reports/392226189?alt=media”   }]

``` 您可以使用createTime检查天气报告是否已更新。如果报告已更新,createTime将与您之前获得的第一个createTime不同。

Reference Use the report ID to identify reports that you still need to download and import. However, if two new reports have the same startTime and endTime property values, only import the report with the newer createTime value.