Facebook 视频的 Facebook Like 按钮

发布于 2024-10-30 14:19:43 字数 806 浏览 0 评论 0原文

今天,我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

眉目亦如画i 2024-11-06 14:19:43

请参阅以下代码,了解适用于所有浏览器的 LIKE 按钮的示例实现。

HTML:

<iframe  id="IframeTemp" src="#"  scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:55px;" allowTransparency="true">
</iframe>

JavaScript:

<script type="text/javascript">
    var currenturl = document.URL + "&send=false&layout=standard&width=450&show_faces=true&action=like&colorscheme=light&font&height=55";

    var url = "//www.facebook.com/plugins/like.php?href="+currenturl;
    document.getElementById("IframeTemp").src = url;
    var myIframe = parent.document.getElementById("IframeTemp");  

    // Setup the width and height 
    myIframe.src = url;  
</script>

不要忘记将 Javascript 保留在开发人员 Facebook 中可用的母版页上。

See the below code for an example implementation of a LIKE button that works in all browsers.

HTML:

<iframe  id="IframeTemp" src="#"  scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:55px;" allowTransparency="true">
</iframe>

JavaScript:

<script type="text/javascript">
    var currenturl = document.URL + "&send=false&layout=standard&width=450&show_faces=true&action=like&colorscheme=light&font&height=55";

    var url = "//www.facebook.com/plugins/like.php?href="+currenturl;
    document.getElementById("IframeTemp").src = url;
    var myIframe = parent.document.getElementById("IframeTemp");  

    // Setup the width and height 
    myIframe.src = url;  
</script>

Don't forget to keep the Javascript on the master page which is available in developer Facebook.

笔芯 2024-11-06 14:19:43

我在我正在进行的项目中遇到了与您相同的问题。我发现您可以“喜欢”实际视频文件的网址,在您的情况下 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文