我在页面上添加了一个类似facebook的按钮,但它没有正确记录给定的URL。问题是,在我点击“赞”按钮后,我的脸谱中显示的网址缺少参数值。网址旁边显示的标题也缺少某些部分。 以下是我将facebook配置为按钮的方式:
<head>
.....
<meta property="og:title" content="Family Tree of John Doe"/>
<meta property="og:type" content="mySite:family_tree"/>
<meta property="og:url" content="http://www.mySite.com/edit/tree/visual?person=John_Doe_1"/>
<meta property="og:image" content="http://images.mySite.com/tree.png"/>
<meta property="og:site_name" content="mySite"/>
<meta property="fb:app_id" content="................"/>
<meta property="og:description" content="Site description"/>
....
<head>
<body>
.....
<fb:like href="http://www.mySite.com/edit/tree/visual?person=John_Doe_1" show_faces="true" width="450"></fb:like>
.....
</body>
在个人资料页面中,like部分的标题为“Family Tree of”,其指向的网址为“http://www.mySite.com/edit/tree/visual?person”。 我该如何解决这个问题?