如何在第一次设置 og:type 的同时不失去点赞数?
当我第一次创建我的网站时,我忽略了添加 Facebook 推荐的 Open Graph 标签 (http://developers.facebook.com/docs/opengraph/),该网站现在通过 fb:comments 小部件获得了大约 1200 个 Facebook 点赞。 http://graph.facebook.com/http://feedtheanimalssamples.com/ 显示了这一点:
{
"id": "http://feedtheanimalssamples.com/",
"shares": 1204
}
最近,我添加了以下 OG 标签:
<meta property="fb:app_id" content="59193243341" />
<meta property="og:title" content="Girl Talk - Feed The Animals Samples (old)" />
<meta property="og:image" content="http://feedtheanimalssamples.com/fta_small.png" />
<meta property="og:url" content="http://feedtheanimalssamples.com" />
但是当我添加 og:type 标签:
<meta property="og:type" content="website" />
和 Lint 网站时,我失去了所有的喜欢。 http://graph.facebook.com/http://feedtheanimalssamples.com/ 开始显示:(
{
"id": "170545342993850",
"name": "Girl Talk - Feed The Animals Samples",
"picture": "http://profile.ak.fbcdn.net/hprofile-ak-snc4/188039_170545342993850_3277642_s.jpg",
"link": "http://www.facebook.com/pages/Girl-Talk-Feed-The-Animals-Samples/170545342993850",
"category": "Website",
"website": "http://feedtheanimalssamples.com/",
"description": "Interactively identifies the samples in the 2008 album 'Feed The Animals' by mashup artist Girl Talk.",
"likes": 1
}
注意“喜欢”:1。)
那么:如何设置 og:type 而不丢失我的喜欢?
我试图让我的喜欢者知道我已经创建了一个经过改进的新网站。我正在按照 http://developers.facebook.com/blog/post/397< 上的说明进行操作/a> 在“通过 Graph API 发布到连接的用户”下,但使用该 API 显然需要指定 og:type。
谢谢!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我对此没有答案,但看起来他们在 2010 年 11 月 19 日星期五的平台更新中提到了这一点:
http://developers.facebook.com/blog/post/430/
但从时间顺序来看,您的帖子是在这次更改之后发布的,所以也许这只是暂时的。
I don't have an answer to this, but it looks like they mention this in their platform update on Friday, November 19, 2010:
http://developers.facebook.com/blog/post/430/
But looking at the chronology, your post was after this change, so perhaps it was only temporary.
另外,请提供
og:site_name
以及您的网站名称,因为这也是必需的。Also provide
og:site_name
with your site name, as it is also required.我并不肯定,但您可能需要“迁移”您的“赞”按钮。
请参阅此开发者页面。
...其中有这句话:
我自己仍然不太了解整个迁移过程,但它可能会对您有所帮助。
I'm not positive, but you may need to "Migrate" your Like Button.
See this developer page.
...which has this quote:
I still don't quite understand the whole migration yet, myself, but it may help you.