如何在facebook墙贴(使用rails +考拉)中嵌入我自己的HTML5/flash视频播放器?

Moo*_*zly 5 video html5 facebook koala

我想在Facebook墙上贴一个自己的HTML5(带闪存备份)播放器.我正在使用铁轨和红宝石考拉.我已经看到了这个:https://developers.facebook.com/docs/share/可以添加的元标记,但它可以是我的网页链接,也可以是要加载的视频文件.

感谢是否有人可以帮助我:)

DMC*_*MCS 4

http://www.longtailvideo.com/support/blog/19150/publish-your-videos-to-facebook-with-a-jw-player

以下是共享链接上的 og:tags 示例,以便 Facebook 可以拾取客户视频播放器:

<meta property="og:type" content="movie" /> 
<meta property="og:video:height" content="260" /> 
<meta property="og:video:width" content="420" /> 
<meta property="og:video:type" content="application/x-shockwave-flash" />
<meta property="og:title" content="Big Buck Bunny" /> 
<meta property="og:description" content="Big Buck Bunny is a short animated film by the Blender Institute, part of the Blender Foundation." />
<meta property="og:image" content="http://www.example.com/bunny.png" />
<meta property="og:video" content="http://www.example.com/jwplayer/player.swf?file=http%3A%2F%2Fwww.example.com%2Fbunny.flv&autostart=true" /> 
Run Code Online (Sandbox Code Playgroud)