我有一个包含以下opengraph元标记的网页:
<meta property="fb:admins" content="myid" />
<meta property="og:title" content="myurl.com" />
<meta property="og:url" content="http://www.myurl.com/" />
<meta property="og:description" content="My description" />
<meta property="og:type" content="website" />
<meta property="og:image" content="http://www.myurl.com/images/image.jpg"/>
我试图使用此代码为每个帖子获取Facebook赞按钮:
echo '<iframe src="//www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.myurl.com%2Fnews.php%3Fid%3D'.$postid.'&send=false&layout=button_count&width=100&show_faces=false&action=like&colorscheme=light&font=trebuchet+ms&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:100px; height:21px;" allowTransparency="true"></iframe>';
显然每个喜欢的按钮都使用不同的$ postid值,但是当我转到我的网页并且喜欢帖子编号1时,我重新加载页面,而帖子3和4也有新的喜欢。我不像,它是一样的。真的很奇怪,很烦人。这就像连接的帖子没有相同的URL。你知道我该如何解决这个问题吗?
答案 0 :(得分:1)
通过将og:url
设置为您网站的基本地址,您告诉 Facebook这是您想要喜欢的网址。
在每种情况下,将其作为特定帖子的URL。
答案 1 :(得分:0)
我解决了这个问题,而是在每个帖子的详细信息中添加了一个Like按钮,这样就可以解决在同一页面中有很多Like按钮相互连接的问题。
在详细信息页面中(我只使用一个news.php),每次更改URL(具有不同的id)时,og:url参数都会以相同的方式更改。
news.php?id=1 has an og:url content="http://www.mysite.com/news.php?id=1"
news.php?id=2 has an og:url content="http://www.mysite.com/news.php?id=2"
and so on...
此外,我相应地更改了每个帖子的标题和说明,因此当人们在Facebook上分享它时,它将拥有正确的数据,而不是通用的。
如果您想在同一页面上使用多个“赞”按钮,我将不知道如何...