分享脸书与描述

时间:2012-10-21 12:45:07

标签: javascript facebook-sharer

我在JavaScript中实现了facebook共享功能。到目前为止,当我点击时,弹出窗口显示文档的标题,网址和图像。我需要添加一个像这样的小描述:

enter image description here

到目前为止,我的代码是:

window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent('http://xxxxx.com/myblog')+'&t='+encodeURIComponent(''),'sharer','toolbar=0,status=0,width=626,height=436'); 

是否有任何事情需要添加以使描述出现在sharer弹出窗口中?

1 个答案:

答案 0 :(得分:1)

在您要共享的页面(http://xxxxx.com/myblog)上,您需要添加FB Open Graph标签

<meta property="og:url" content=""/>
<meta property="og:type" content="article"/>
<meta property="og:title" content=""/>
<meta property="og:image" content=""/>
<meta property="fb:app_id" content=""/>

此标记添加说明

<meta property="og:description" content="xyz">

了解更多@ http://developers.facebook.com/docs/opengraphprotocol/