我想通过sharer.php分享一个只有一张图片的缩略图的视频
我知道大多数人使用具有灵活 UI 的 Feed 对话框,但在这种情况下我需要高级选项。
og:image
一个对话框看起来像这样,我希望在相对页面上只有一个我指定的缩略图
我的 OG 标签如下所示:
<meta property="fb:admins" content="*admins*" />
<meta property="fb:app_id" content="*app_id*" />
<meta property="og:type" content="movie" />
<meta property="og:video:height" content="*height*" />
<meta property="og:video:width" content="*width*" />
<meta property="og:video:type" content="application/x-shockwave-flash" />
<meta property="og:title" content="*title*" />
<meta property="og:description" content="*description*" />
<meta property="og:image" content="*image*" />
<meta property="og:url" content="*url*" />
<meta property="og:video" content="*video*" />
我使用一个基本功能来调用共享此链接对话框
u = $(*link*).html();
t = $(*name*).html();
window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=*width*,height=*height*');
return false;
我的问题是如何修改我的代码/添加代码以只有 1 个缩略图而不是1 of 2
消息
我尝试更改我的代码,删除 og:url,检查 og:image 等,使用 facebook 调试器清除其缓存。我在网上也找不到任何东西。