我正在尝试在我的网站上获得一个类似按钮的视频,而不是所有网站....
无法实现......任何想法?
谢谢(并且感到沮丧),
约翰
答案 0 :(得分:1)
如果视频有自己的ID(例如您将视频数据存储在数据库或其他内容中),则可以在href参数的url末尾使用?video = video_id打印like按钮的iframe。因此,每个视频的每个“赞”按钮都是唯一的。我只在下面的代码中突出显示了这部分的代码:
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fexample.com%3Fvideo%3Dvideo_id&layout=standard&show_faces=true&width=450&action=like&colorscheme=light&height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>
或在fblm案例中:
<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><fb:like href="http://example.com`?video=video_id" show_faces="true" width="450"></fb:like>
答案 1 :(得分:0)
是的,使用Open Graph,您现在也可以共享音频和视频内容,阅读Like plugin和Open Graph types:
<html xmlns:og="http://ogp.me/ns#">
<head>
...
[REQUIRED TAGS]
<meta property="og:video" content="http://example.com/awesome.flv" />
<meta property="og:video:height" content="640" />
<meta property="og:video:width" content="385" />
<meta property="og:video:type" content="application/x-shockwave-flash" />
...
</head>