我试着在FB上嵌入一个带有OG标签的iframe播放器,但没有成功。但我发现玩家可以。我一直想模仿他们的做法,但没能成功。
KalturaHereKaltura解释了如何在FB中嵌入他们的播放器。基本上他们说你应该贴上以下标签:

 <!-- Facebook iframe embed  -->
 <meta property="og:video:url" content="https://cdnapisec.kaltura.com/p/243342/sp/24334200/embedIframeJs/uiconf_id/28685261/partner_id/243342?iframeembed=true&playerId=kaltura_player&entry_id=1_sf5ovm7u">
 <meta property="og:video:secure_url" content="https://cdnapisec.kaltura.com/p/243342/sp/24334200/embedIframeJs/uiconf_id/28685261/partner_id/243342?iframeembed=true&playerId=kaltura_player&entry_id=1_sf5ovm7u&">
 <meta property="og:video:type" content="text/html">
 <meta property="og:video:width" content="560">
 <meta property="og:video:height" content="395">

当然,我也尝试过其他方法,比如处理Kaltura Http头。但它不起作用,有什么线索可以解释为什么它对他们有效吗?我错过了什么?
注意:这是一个重复的here,但我想添加我发现的Kaltura异常。

最佳答案

只需遵循this example
编辑
只是注意到你试过了。如果您正确地包含标签,它应该也确实有效。
你是在使用Kaltura.com还是你自己托管的?
Facebook、twitter、embed.ly和其他嵌入目的地都需要嵌入提供者url的白名单。因此,如果您是自己托管Kaltura服务器,应该注意的是,您还需要联系这些服务(如facebook)才能获得白名单。

09-11 14:19