Facebook分享:标题不会显示在共享框中

时间:2011-11-25 12:59:13

标签: facebook

我正在分享我与Facebook的链接。当我点击分享按钮时,它会进入Facebook共享页面。一切都很好,除了标题没有显示,虽然标题在查询字符串中。

以下是我的代码。请详细说明如何显示标题和说明。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Humayoo Social Book Mark</title>
<meta property="og:title" content="Smith hails 'unique' Wable legacy" /> 
<meta property="og:description" content="John Smith claims beautiful football is the main legacy of Akhil Wable's decade at the club. " /> 
<meta property="og:image" content="http://www.onjd.com/design05/images/PH2/WableAFC205.jpg" />
<meta name="medium" content="blog" />
<script type="text/javascript">
    function whenclick() {
        var uri = "http://192.168.1.10/test.aspx&t=abc";//here my domain name or ip
        window.location = "http://www.facebook.com/sharer.php?u="+uri;
    }
</script> 
</head>
<body>
<a href="#" onclick="whenclick();">Share</a>
</body>
</html>

1 个答案:

答案 0 :(得分:3)

可能会发生这种情况,因为你无法通过Facebook从本地主机试用它。

要了解Facebook方面发生的事情,请尝试调试器:http://developers.facebook.com/tools/debug/

您可以看到Facebook收集的开放图形元信息以及您拥有的错误。