回答

13

如果您打電話給事件ID本身,您可以添加attending_countdeclined_countmaybe_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" 
} 
+1

非常感謝!還有一個問題:你怎麼知道的?我閱讀了API文檔,但是我沒有找到這些信息。 – ZaquPL 2014-09-04 21:05:08

+1

我在以下參考頁面找到了這些字段:https://developers.facebook.com/docs/graph-api/reference/v2.1/event/ – 2014-09-05 11:49:45

相關問題