Facebook 视频的 Facebook Like 按钮
今天,我在 Facebook 页面上创建了一个 iframe-Tab 作为登陆页面。 在此选项卡上,我们显示一个从 Facebook 实现的视频。
现在我想在此页面上为此视频添加 Facebook Like 按钮,我实现了 LIKE BUTTON 开发人员页面生成的代码。
<代码>
现在按钮已显示,但没有计数。 如果我点击“like”按钮,计数器就会变得可见(显示+1)并跳回来(显示无计数)。
您知道我是否可以直接对 Facebook URL 使用“赞”按钮吗? http://www.facebook.com/video/video.php?v=345848348745 谢谢你
!
Today, i created an iframe-Tab on our Facebook Page as a landingpage.
On this tab we display a video, implemented from Facebook.
Now i want to add the Facebook Like Button for this video on this page, i implement the code generated by the LIKE BUTTON Developer Page.
<iframe src="https://www.facebook.com/plugins/like.php?href=https%3A%2F%2Fwww.facebook.com%2Fvideo%2Fvideo.php%3Fv%3D345848348745&layout=button_count&show_faces=true&width=100&action=like&font=arial&colorscheme=light&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:120px; height:21px;" allowTransparency="true"></iframe>
Now the button where displayed, but without a count.
If i click on the like button the counter getting visible (displaying +1) and jumping back then (displaying no count).
Do you know, if i can use the like button directly for the Facebook URL?
http://www.facebook.com/video/video.php?v=345848348745
Thank u!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅以下代码,了解适用于所有浏览器的 LIKE 按钮的示例实现。
HTML:
JavaScript:
不要忘记将 Javascript 保留在开发人员 Facebook 中可用的母版页上。
See the below code for an example implementation of a LIKE button that works in all browsers.
HTML:
JavaScript:
Don't forget to keep the Javascript on the master page which is available in developer Facebook.
我在我正在进行的项目中遇到了与您相同的问题。我发现您可以“喜欢”实际视频文件的网址,在您的情况下 http:// www.facebook.com/v/345848348745
然而,此解决方案的问题在于点赞不会聚合到实际视频页面的网址上。它们将是两个独立的“类似”实体,
恐怕目前这似乎是 fb 类似功能的限制
I had the same problem you did on a project I'm working on. I've found that you can "like" the url for the actual video file, in your case http://www.facebook.com/v/345848348745
however, the problem with this solution is that the likes will not aggregate onto the actual video page's url. They will be two separate "like' entities
This seems to be a limitation of the fb like functionality at the moment I'm afraid