谁“喜欢”?我在 Facebook 社交插件上的帖子
I have embedded fb's social like plugins into my blog.
it will state things such as "XXXX and 11 others like this" but it won't show me who.
can I find out who likes my post ?
I tried to google , but no luck..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您正在使用此处记录的 Facebook 社交插件,那么您可以选中“显示面孔”,这将在其下面显示一些用户。
这会将
data-show-faces="true"
添加到您的代码中。-- 或 --
如果您想全面了解喜欢您页面的人,您需要将开放图元标记添加到页面的
页面,该页面会将您的 Facebook
USER_ID
链接为该页面的管理员。 此处对此进行了记录。添加此元标记后,您的点赞框将出现,其下方有一个版主链接。这会将您链接到 Facebook 页面的开放图谱页面。在此页面上,您将能够看到所有喜欢该页面的人。
If you're ysing the Facebook Social plugin, documented here, then you can check the "Show Faces", and this will show some users underneath it.
This will add
data-show-faces="true"
to your code.-- OR --
If you want a full overview of the people that have liked your page, you need to add open graph meta tags to the
<head>
of your page, which will link your FacebookUSER_ID
as the administrator of the page. This is documented here.<meta property="fb:admins" content="USER_ID"/>
Once you've added this meta tag, your like box will appear with a Moderator Link underneath it. This will link you the Open Graph page for your page on Facebook. On this page you will be able to see everyone who has like the page.