Python 在Django中定制facebook共享按钮?

Python 在Django中定制facebook共享按钮?,python,django,facebook,Python,Django,Facebook,我正在尝试自定义我的facebook共享的内容,但我一直未能成功地做到这一点。根据文件()。我添加了og标签: <meta property="og:url" content="www.mysite.com" /> <meta property="og:title" content="Check out this link" /> <meta property="og:description" content="Thi

我正在尝试自定义我的facebook共享的内容,但我一直未能成功地做到这一点。根据文件()。我添加了og标签:

        <meta property="og:url" content="www.mysite.com" />
        <meta property="og:title" content="Check out this link" />
        <meta property="og:description" content="This is a test description" /> 
        <meta property="og:image" content="http://img1.123freevectors.com/wp-content/uploads/new/icon/075-smiley-face-vector-art-free-download-l.png" /> 
这里可能有什么问题?

根据哪些“文档”?我使用了此文档:
<div class="fb-share-button" data-layout="button"></div>
<script>(function(d, s, id) {
  var js, fjs = d.getElementsByTagName(s)[0];
  if (d.getElementById(id)) return;
  js = d.createElement(s); js.id = id;
  js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.0";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
Inferred Property   The 'og:url' property should be explicitly provided, even if a value can be inferred from other tags.
Inferred Property   The 'og:title' property should be explicitly provided, even if a value can be inferred from other tags.
Inferred Property   The 'og:description' property should be explicitly provided, even if a value can be inferred from other tags.
Inferred Property   The 'og:image' property should be explicitly provided, even if a value can be inferred from other tags.