2011-12-12 66 views

回答

1

兩者最終,我與Facebook FQL使它:

var eventsQuery = "{'eventslist':\'SELECT eid, rsvp_status FROM event_member WHERE uid = me() AND start_time > " + Math.round(new Date().getTime()/1000) + " ORDER BY start_time','eventsdetails':'SELECT eid, name, description, location, venue, creator, pic_square, start_time, end_time FROM event WHERE eid IN (SELECT eid FROM #eventslist) ORDER BY start_time'}"; 
0

如果您是事件的所有者/創建者,那麼您可以查詢偶數對象的invited連接。否則,無法檢索該數據。

Graph API Event reference

You can read the list of invitees for an event by issuing an HTTP GET to /EVENT_ID/invited: 
https://graph.facebook.com/331218348435/invited 
相關問題