图APIinsights/page_fans_by_like_sourceend_time变化
Graph API insights/page_fans_by_like_source end_time change
我正在使用 developers.facebook.com 图 API 来测试 v2.2 调用。
调用时例如:
[PAGE-ID]/insights/page_fans_by_like_source?since=2015-01-09&until=2015-01-10
或
[PAGE-ID]/insights/page_fans_by_like_source?since=1420761600&until=1420848000
我返回了数据,值部分如下所示:
"values": [
{
"value": {
"sponsored_story": 1,
"page_profile": 1
},
"end_time": "2015-01-09T08:00:00+0000"
}
],
出于明显的原因,从我的角度来看这不是正确的数据,因为 "end_time" 设置在 8:00:00 小时,所以我们只有 2015-01-09 00:00:00 的数据直到 2015-01-09 08:00:00。当然,我一直在寻找数据直到午夜。 如何改变这种行为?
我知道我可以格式化 "end_time" 但如何更改这些时间?这可能吗?
Metrics that are marked with * are available in real-time, i.e., they are refreshed approximately every 15 minutes. Most other metrics will update once every 24 hours.
Source: Graph API Reference v2.2 Insights
向下滚动到 "Available Metrics" "Naming Patterns for Metrics"
下的最后一个项目符号
您要查找的指标每天计算一次,因为它没有标记 *
。您得到的早上 8 点时间就是计算时间,并且是比您请求的更具体的数据。你只需要忽略它。
我正在使用 developers.facebook.com 图 API 来测试 v2.2 调用。
调用时例如:
[PAGE-ID]/insights/page_fans_by_like_source?since=2015-01-09&until=2015-01-10
或
[PAGE-ID]/insights/page_fans_by_like_source?since=1420761600&until=1420848000
我返回了数据,值部分如下所示:
"values": [
{
"value": {
"sponsored_story": 1,
"page_profile": 1
},
"end_time": "2015-01-09T08:00:00+0000"
}
],
出于明显的原因,从我的角度来看这不是正确的数据,因为 "end_time" 设置在 8:00:00 小时,所以我们只有 2015-01-09 00:00:00 的数据直到 2015-01-09 08:00:00。当然,我一直在寻找数据直到午夜。 如何改变这种行为?
我知道我可以格式化 "end_time" 但如何更改这些时间?这可能吗?
Metrics that are marked with * are available in real-time, i.e., they are refreshed approximately every 15 minutes. Most other metrics will update once every 24 hours.
Source: Graph API Reference v2.2 Insights
向下滚动到 "Available Metrics" "Naming Patterns for Metrics"
下的最后一个项目符号您要查找的指标每天计算一次,因为它没有标记 *
。您得到的早上 8 点时间就是计算时间,并且是比您请求的更具体的数据。你只需要忽略它。