Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/url/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
fb:like url参数值被删除。标题也不完整_Url_Parameters_Title_Facebook Like - Fatal编程技术网

fb:like url参数值被删除。标题也不完整

fb:like url参数值被删除。标题也不完整,url,parameters,title,facebook-like,Url,Parameters,Title,Facebook Like,我在我的页面上添加了一个类似facebook的按钮,但它没有正确记录给定的url。问题是,在我点击like按钮后,我的facebook个人资料上显示的url缺少一个参数值。url旁边显示的标题也缺少某些部分。 下面是我如何配置类似facebook的按钮: <head> ..... <meta property="og:title" content="Family Tree of John Doe"/> <meta property="og:type" content

我在我的页面上添加了一个类似facebook的按钮,但它没有正确记录给定的url。问题是,在我点击like按钮后,我的facebook个人资料上显示的url缺少一个参数值。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,它指向的url是http://www.mySite.com/edit/tree/visual?person. 我如何解决这个问题