我希望使用Facebook Graph API v2.1来参加活动。我无法使用FQL查询,因为它在当前版本之后已弃用。
我可以使用 / {event-id} /参加并总结所有来宾,但这个解决方案效率非常低(查询会执行很长时间 - 通常> 2000毫秒,它只适用于〜 1000位客人,而不是更多)。
答案 0 :(得分:13)
如果您对事件ID本身进行了调用,则可以添加attending_count
,declined_count
和maybe_count
的字段,以便轻松获得总计。
示例:
https://graph.facebook.com/{event_id}?fields=attending_count,declined_count,maybe_count
如果我执行以下操作:
https://graph.facebook.com/468185256651918?fields=attending_count,declined_count,maybe_count
我明白了:
{
"attending_count": 304,
"declined_count": 277,
"maybe_count": 97,
"start_time": "2014-09-06T20:00:00+0100",
"id": "468185256651918"
}