0

Can any one help me on that how can i get Admin of events from facebook using graph api, i also search field of event which facebook provided to us but couldn't get admin field, kindly help me on that thanks in advance

Aleem
  • 3,173
  • 5
  • 33
  • 71

2 Answers2

1

You can try this:

https://graph.facebook.com/{event_id}/admins
Adam
  • 11
  • 1
0

Using FQL, query the event table (https://developers.facebook.com/docs/reference/fql/event/) and read the creator (id of user who created the event). More than likely they should be one of the admins for the event.

DMCS
  • 31,720
  • 14
  • 71
  • 104
  • Getting the creator is easy.. But there is only one per event.. Any idea how to get **all the admins** using FQL? – Shy Peleg Apr 25 '15 at 11:39