Facebook 把这段加错

Facebook 把这段加错,facebook,facebook-opengraph,meta-tags,sharing,addthis,Facebook,Facebook Opengraph,Meta Tags,Sharing,Addthis,我经常分享我的博客文章。当我试图分享我的最新帖子时,它会在Facebook上调出并显示错误的段落。我不知道如何让它拉正确的段落。这是我的代码: <div class="social"><!-- AddThis Button BEGIN --> <div class="addthis_toolbox addthis_default_style "> <a class="addthis_button_facebook"></a> <a

我经常分享我的博客文章。当我试图分享我的最新帖子时,它会在Facebook上调出并显示错误的段落。我不知道如何让它拉正确的段落。这是我的代码:

<div class="social"><!-- AddThis Button BEGIN -->
<div class="addthis_toolbox addthis_default_style ">
<a class="addthis_button_facebook"></a>
<a class="addthis_button_twitter"></a>
<a class="addthis_button_email"></a>
<span class="addthis_separator">|</span>
<a class="addthis_button_compact" href="http://www.addthis.com/bookmark.php?
v=250&amp;pubid=ra-">Share</a>
</div>
<script type="text/javascript">var addthis_config = {"data_track_clickback":
true};    
</script>
<script type="text/javascript" src="http://s7.addthis.com/js/250
/addthis_widget.js#pubid=ra-"></script>
<!-- AddThis Button END --></div>

var addthis\u config={“数据跟踪\u单击返回”:
真};

要解决此问题,您必须使用OG标签告诉Facebook要使用什么。下面是一个解决我的问题的示例:

<meta content="Title of Page" property="og:title" />
<meta content="Blog Post" property="og:type" />
<meta content="Page URL" property="og:url" />
<meta content="Image to represent blog post." property="og:image" />
<meta content="Site Name" property="og:site_name" />
<meta content="Description of Page or Paragraph to display" 
               property="og:description" />

有关更多信息,请访问和

什么对我有用 如果您正试图将AddThis与UTM代码或其他querystring变量一起使用,下面是最终对我有效的方法

根据,使用,但然后使用验证Facebook缓存是否已刷新并正确获取了页面标题中的所有正确元标记,然后验证没有querystring UTMs/variables将此共享链接添加到Facebook。就我而言,Index.html不能包含任何querystring变量或AddThis。它将URL错误地传递到Facebook。对我来说唯一有效的方法是:

<a href="http://api.addthis.com/oexchange/0.8/forward/facebook/offer?pco=tbx32nj-1.0&amp;url=https%3A%2F%2Fwww.example.com%2Findex.html" target="_blank" ><img src="http://cache.addthiscdn.com/icons/v1/thumbs/32x32/facebook.png" border="0" alt="Facebook" /></a>

我失败了什么 当尝试使用下面的AddThis“data\u track\u addressbar”和“AddThis\u widget.js”模块进行共享时,Facebook完全无法提取新的OpenGraph元标记

<script type="text/javascript">var addthis_config = {"data_track_addressbar":false};</script>
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js"></script>
var addthis\u config={“数据跟踪地址栏”:false};