Facebook invites - who's invited whom

夙愿已清 提交于 2019-12-03 03:38:24

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.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!