如何在 Facebook 应用程序选项卡上成功嵌入 YouTube 视频
我创建了简单的 Facebook 应用程序。我有一个个人资料选项卡(用于 Facebook 页面),其中嵌入了 YouTube 视频。
<fb:swf swfbgcolor="000000" imgstyle="border-width:3px; border-color:white;" swfsrc='http://www.youtube.com/v/xxxxxxxxxx' imgsrc='http://img.youtube.com/vi/xxxxxxxxxx/2.jpg' width='340' height='270' />
图像看起来不错。但 onclick 不播放视频。
我很感激任何帮助。
谢谢。
I have created simple facebook app. I have a profile tab(for facebook pages) where I have embed a youtube video.
<fb:swf swfbgcolor="000000" imgstyle="border-width:3px; border-color:white;" swfsrc='http://www.youtube.com/v/xxxxxxxxxx' imgsrc='http://img.youtube.com/vi/xxxxxxxxxx/2.jpg' width='340' height='270' />
The image appears fine. But onclick It does not play the video.
I appreciate any help.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为了实现这一目标,您必须将
swfsrc
属性值正确替换为您想要的 YouTube 视频之一。打开YouTube视频链接,点击
embed
按钮并查看第一个标记。复制该值(不带查询字符串)并将其粘贴到您的 swfsrc 属性值上。就这样。享受 ;)
in order to achieve that you have to correctly replace the
swfsrc
attribute value with the one of the youtube video you want.open the youtube video link, click on the
embed
button and look at the first<param name="movie" value="http://www.youtube.com/v/cNgf6fd88g8?fs=1&hl=en_US"></param>
tag. copy that value (without the query string) and paste it on your swfsrc attribute value. that's all. enjoy ;)