当我在我的网站上使用facebook分享按钮时,它只显示网站标题,但不显示我分享的页面内容。无法在网上找到解决方案。
我使用facebook开发者网站上的代码
我用我的网页网址替换了该按钮的data-href:ie http://www.strongbase.nl/verslagdetail/2
但是当我点击分享按钮时,它只会显示这一点(见下面的截图):
有没有办法解决这个问题?
http://puu.sh/dQDGZ/76817d30de.png
非常感谢!
答案 0 :(得分:0)
您应该实现一些元标记。
请看这里:http://davidwalsh.name/facebook-meta-tags
例如,在头部:
<head>
<meta property="og:title" content="Your pagetitle here"/>
<meta property="og:url" content="http://urltoyourpage.com"/>
<meta property="og:image" content="http://linktosome.com/image.png"/>
</head>
您可以添加更多属性。只需谷歌OpenGraph,或点击提供的链接。
如果这对你有所帮助,请将此标记为答案!