我试图从我的一个Facebook页面获取所有帖子的见解。我在graph explorer中尝试了下面的表达式,但是我收到了一个错误。我设法使用其ID来获取一个帖子的见解,但是当我想要立即获得所有帖子时它似乎无法工作。
{page-id}/posts/?fields=insights{post_impressions_unique}
{
"error": {
"message": "Invalid query",
"type": "OAuthException",
"code": 3001,
"error_subcode": 1504028,
"is_transient": false,
"error_user_title": "No Metric Specified",
"error_user_msg": "No metric was specified to be fetched. Please specify one or more metrics to be fetched and try again.",
"fbtrace_id": "Ao79E5/rtfn"
}
}
有什么想法吗?
答案 0 :(得分:1)
/object-id/insights/metricname
语法不像其他子字段一样转换为foo{bar}
,您需要在此处使用略有不同的语法:
?fields=insights.metric(post_impressions_unique)