我正在尝试从图谱API获取JSON响应中每个反应的总计数。
例如:
{
"data": {
"like": 1242,
"wow": 674,
"sad": 2500
......
}
}
目前我有以下" {postID} / reactions /?fields = type"但这并不是每个人的计数。有没有人为Facebook API的最新更新提供解决方案?
https://developers.facebook.com/tools/explorer/
https://developers.facebook.com/docs/graph-api/reference/post/reactions
答案 0 :(得分:1)
我弄清楚了,但JSON响应的格式不一样,但它对我有用。
?fields=reactions.type(LIKE).summary(total_count).limit(0).as(like),reactions.type(LOVE).summary(total_count).limit(0).as(love),reactions.type(WOW).summary(total_count).limit(0).as(wow),reactions.type(HAHA).summary(total_count).limit(0).as(haha),reactions.type(SAD).summary(total_count).limit(0).as(sad),reactions.type(ANGRY).summary(total_count).limit(0).as(angry)