Facebook invites - who invited whom

I have an event on Facebook, as a rule, it is shared with about 400 people, and then people share further.

How can I track which user is sharing the most? I saw answers to applications, but I don’t see a URL modifier that allows me to see who invited someone to the event. On the Facebook homepage, if you hover over someone’s name, you’ll tell who invited them, so Facebook should keep a record of this.

+5
source share
1 answer

How about using FQL?

This request will provide you with a list of invitations for each invited user:

SELECT inviter, uid FROM event_member WHERE eid = <event_id> and inviter 

. inviter . , - , , , .

+6

All Articles