我正在尝试查询帐户的广告组统计 API 以获取一整天的数据。
Facebook 文档建议指定与 ad_account 时区相关的开始和结束日期以及时间(以 UTC 为单位),如以下示例所示:
1) 太平洋时间(2012 年 12 月 8 日):
/adgroupstats?start_time=2012-12-08T08:00:00&end_time=2012-12-09T08:00:00&
stats_mode=with_delivery&include_deleted=true&access_token=
2) 夏令时(2012 年 8 月 8 日):
/adgroupstats?start_time=2012-08-08T07:00:00&end_time=2012-08-09T07:00:00
&stats_mode=with_delivery&include_deleted=true&access_token=
我正在寻找一种更好的方法来解释夏令时,所以我想知道是否可以选择完全排除时间,因为我刚刚过了一整天。
在测试中,我发现以下返回与选项 2 相同的结果,但我想知道这是否是一种可靠的方法,因为它没有记录:
/adgroupstats?start_time=2012-08-08T00:00:00&end_time=2012-08-09T00:00:00&
stats_mode=with_delivery&include_deleted=true&access_token=