获取拥有更多好友成为某个页面粉丝的前 10 名粉丝
是否有可能生成一个页面的前 10 名粉丝,其中该页面的粉丝数量最多?
谢谢!
Is it possible to generate a top 10 of fans of a page that have the highest number of friends that are fans of the same page?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要获取用户的好友列表,该用户必须对您的应用程序进行身份验证。
经过身份验证后(取决于您请求的权限 http://developers.facebook.com/ docs/reference/api/permissions/)您可以通过在 Graph API 上调用
me/likes
来查看该用户是否是您页面的粉丝。您可以从me/friends
获取好友。然后,您可以对应用程序的其他用户进行某种查找,以计算谁拥有最多也喜欢该页面的朋友。
To get the list of friends from a user, that user has to authenticate your app.
When authenticated (depending on what permissions you ask for http://developers.facebook.com/docs/reference/api/permissions/) you can see if that user is a fan of your page by calling
me/likes
on the Graph API. You can get friends fromme/friends
.Then you might be able to do some sort of lookup to other users of your app to calculate who has the most friends who've liked that page too.