如何检索喜欢我的 Facebook 页面的人员列表?
我想检索在 facebook 上喜欢
我的页面的人员列表。我想获取用户详细信息
及其uids
。
用户可能会喜欢
该页面,并使用重复的个人资料再次喜欢该页面,因此为了避免这种类型的事情,我想获取喜欢的人的uid
页面。
有没有可用的Api...
是否可以使用批量请求Api获取uid值
还有其他方法可以获取用户的uid吗,请帮助我朋友..
Possible Duplicate:
Retrieve Facebook Fan Names
How to list facebook users who like a page or interest
in my project i want to retrieve the list of persons who have liked
facebook my page. I want to get the user details
and their uids
.
A user may Like
the page and once again he likes the page using a duplicate profile, so to avoid this type of things i want to get the uid
of the person who like the page.
Is there any Api available for this...
Is it possible to get the uid value using the batch request Api
Is there any other way to get the uids of the user, please help me friends..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
简单的用这个。
https://www.facebook.com/browse/?type=page_fans&page_id=your page id
它将返回最多 500 个最近喜欢的内容。快乐编码!
Simple use this.
https://www.facebook.com/browse/?type=page_fans&page_id=your page id
It will return up to 500 of the most recent likes. Happy coding!
获取此类用户 ID 的唯一方法是让应用程序作为页面选项卡运行。当用户加载您的选项卡并安装(即授予权限)您的应用程序时,Facebook 发送到您的服务器的
signed_request
(以及该页面的 HTTP POST 请求)将包含一个user_id
。tl;dr:除非用户安装您制作的应用程序,否则您不会获得任何 ID。
The only way you can get the ID of such users is to have an app running as a page tab. When the user loads your tab, and installs (i.e. gives permissions to) your app, the
signed_request
that Facebook sends to your server (along with the HTTP POST request for the page) will contain auser_id
.tl;dr: you won't get any IDs unless users install an app you made.