Instagram图表API见解 - 两个日期之间的距离

时间:2018-02-15 14:01:29

标签: facebook-graph-api instagram-api

在Instagram中,reach指标是重复数据删除的数据源。换句话说,7天的数据总和不一定等于该周的值。这类似于Facebook营销reach指标。

我想支持这种情况:给定两个日期,在这两个日期之间给我reach

在FB Marketing API中,使用sinceuntil参数定义日期边界,然后使用time_increment all_days来检索reach总结了所有那些日子。

例如,在这里使用FB Marketing API Docs是一个FB营销网址,它要求总结一周的数据:

{adaccount_id}/insights?metric=reach&since=2018-02-05&until=2018-02-11&time_increment=all_days

在Instagram Graph API中,我可以定义sinceuntil参数来定义日期边界,但没有像time_increment这样的参数。

使用Instagram Graph API Docs,这是一个网址,要求按天分割一周的数据:

{instagram_business_account_id}/insights?metric=reach&period=day&since=1517788800&until=1518307200

有没有什么方法可以改变它以获得两个日期之间的总和?我曾希望period选项all_days类似于FB Marketing API的time_increment参数但不存在。

0 个答案:

没有答案