Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Facebook invites - who's invited whom

I have an event on Facebook, generally it's shared to around 400 people and then people share further.

How can I track which user shares the most? I have seen answers for apps but I can't see the URL modifier which allows me to see who's invited whom to the event. On the main Facebook page, if you hover over someones name it tells you who invited them so Facebook must keep a record of this.

like image 511
exussum Avatar asked Sep 10 '12 18:09

exussum


People also ask

How do you check who invited who on Facebook?

To check the status of your invitations: Tap Menu, then tap Events to select an upcoming event. For public events: Tap the number below Going or Interested to see who has responded.

Why can't I see who's invited to an event on Facebook?

You might be unable to access an event's guest list if the host decided to make an invite-only event or if the event is a group event that was set up by the admin of a private group. Guest lists for such events are only accessible to invited users.

Can you see who you've invited to a Facebook group?

Tap the gear icon in the top-right corner. Select “Invites.” Once you've found the invite, click on it to decide whether you want to join the group or delete it. To locate all your invites, navigate to the “You've been invited to join these groups” menu.


1 Answers

What about using FQL?

This query will get you the list of inviters for each invited user:

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

You can use this query as basis. Order by inviter and count the records for each inviter. I know there's some work to do there, but I guess with a little bit of twicking the query, you'll be able to do it.

like image 161
Avi Avatar answered Oct 11 '22 19:10

Avi