我如何找出 Facebook 页面上 X 粉丝的数量,以及他们是否被推荐,如果是,又是由谁推荐的?
背景:我的雇主正在举办一场竞赛,想要找出第 1000 个“喜欢”该页面的人是谁,以及他们是否是由某人推荐的。该功能是否已经内置,或者是否必须编写应用程序才能找到此信息?
Background: My employer is running a contest and wants to find out who the 1000th person to 'like' the page is, and if they were referred by someone. Is that functionality build in already, or does an app have to be written to find out this info?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
无法获取页面粉丝列表或他们成为粉丝的顺序,但您可以通过在 javascript API 中捕获“喜欢”按钮时捕获的 edge.create 事件来跟踪喜欢您页面的新粉丝。
您还可以检查当前的点赞数,以得出有关哪些订单用户成为粉丝以及他们是哪个“数字”粉丝的结论。
我必须指出,尽管 Facebook 的促销指南明确禁止举办此类竞赛:https://www.facebook.com/promotions_guidelines.php
There's no way to get a list of page fans or the order in which they became fans, but you can track new fans who like your page via capturing the edge.create event in the javascript API when they click the Like button.
You could also check the current like count to come to some sort of conclusion about which order users became fans and which 'number' fan they are
I must point out though that running such a competition is expressly forbidden by Facebook's promotion guidelines: https://www.facebook.com/promotions_guidelines.php