您好我正在使用facebook图表api来提取一些指标但是最近几天api会为其中一些返回空值
ie:id / insights / page_storytellers
{
"data": [
],
"paging": {
"previous": "https://graph.facebook.com/v2.0/id/insights/page_storytellers?suppress_http_code=1&since=1405894077&until=1406153277",
"next": "https://graph.facebook.com/v2.0/id/insights/page_storytellers?suppress_http_code=1&since=1406412477&until=1406671677"
}
}
我的访问令牌具有必需的权限(阅读见解)
*编辑:page_storytellers在7月2日已弃用,但是还是有可比的指标要返回吗?
提前致谢!
答案 0 :(得分:1)
两年后......但如果有人发生这种情况,这可能会有所帮助:
我认为唯一的方法是将指标的值加总 page_storytellers_by_story_type 。
{
"name": "page_storytellers_by_story_type",
"period": "days_28",
"values": [
{
"value": {
"other": 4425,
"fan": 2946,
"page post": 95,
"user post": 0,
"checkin": 0,
"question": 0,
"coupon": 0,
"event": 0,
"mention": 0
},
"end_time": "2016-02-26T08:00:00+0000"
},
"title": "28 Days Talking About This By Story Type",
"description": "28 Days: The number of people talking about your Page, by story type. (Unique Users)",
"id": "123456789/insights/page_storytellers_by_story_type/days_28"
}
总计"其他,粉丝,页面帖子等..."会给整个故事讲述者。
答案 1 :(得分:0)
可比较的指标似乎是页面本身的Graph对象上的talking_about_count
指标。
有关详细信息,请参阅此答案(以及同一页面上的其他答案):https://stackoverflow.com/a/8973361/114558
我相信这是过去7天内“谈论此页面”的人数。
当然,由于此数据无法通过Insights端点获得,因此没有可用的历史数据。要获得历史数字,您必须每天访问端点并存储它。