我第一次使用开放图表。在这样的任何网址中,你可以看到网站顶部的facebook页面上的类似按钮,以及文章标题和摘要之后的另一个按钮。第二个按钮不能按要求工作。如果我喜欢那个链接然后而不是文章网站的Facebook页面被喜欢和我想要显示给其他Facebook用户看到像帖子的信息是文章的摘要,但它显示该人喜欢的页面alazydude。并且图像也没有显示我在开放图形标记中指定的内容。该网站仍然不完整。我现在已经尝试过很多次了。
Have a look at this page。中间的第二个按钮不能正常工作。
答案 0 :(得分:0)
确保在代码中使用正确的data-href来喜欢文章。 (您应该参考该单篇文章的URL,即使它位于包含多篇文章的页面上。)
例如:
<div class="fb-like"
data-href="http://www.yoursite.net/articles/unique-article-id-goes-here-or-something-like-that"
data-send="false"
data-layout="button_count"
data-width="140"
data-show-faces="false"
data-font="segoe ui"></div>
Facebook开发了一个方便的小工具来为您创建代码! 请务必查看the Facebook Developers page on like buttons。
如果正确完成,它应该从该链接获取opengraph-data并同时修复。
你必须确保og-data设置正确。(这是在www.yoursite.net/articles/unique-article-id-goes-here-or-像那样的页面。)
<meta property="og:title" content="Title of the article" />
<meta property="og:type" content="article" />
<meta property="og:url" content="same-url-as-the-data-href-from-like-button" />
<meta property="og:image" content="url-to-image-you-would-like" />
<meta property="og:site_name" content="Name of your site" /
祝你好运!