添加 facebook like 按钮会创建新页面。可以合并/修复吗?

发布于 2024-10-26 04:42:52 字数 1214 浏览 0 评论 0原文

我为我的公司创建了一个 Facebook 页面,并邀请我的朋友喜欢它。赢。

现在我想在我公司的外部网站上添加一个“赞”按钮...

  • 我为我的公司“登录为页面”。

  • 然后我单击了“营销”选项卡 >添加一个“赞”按钮。

  • 使用 Iframe 创建代码。

然而,当我将代码粘贴到我的网站上时,点赞(以及我所有的辛勤工作)就会重新开始。它还在 Facebook 上创建了一个全新的页面......啊。

显然,我可以在新创建的 FB 页面上重新创建我的页面并重新邀请我所有的朋友,但这会浪费数周的工作并惹恼我已经是伪朋友的。在我这样做之前有什么想法吗?

作为参考,这里是类似的 iframe:

<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.mywebsite.com&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>

open graph...

<meta property="og:title" content="my title" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://www.mywebsite.com" />
<meta property="og:image" content="http://www.mywebsite.com/image.png" />
<meta property="og:site_name" content="site name" />
<meta property="fb:app_id" content="xxxxxxxxx" />

I created a facebook page for my company and invited my friends to like it. Win.

Now I want to add a like button on my company's outside website....

  • I "logged in as page" for my company.

  • I then clicked on the marketing tab > add a like button.

  • created the code using Iframe.

However, when I paste the code on my website, the likes (and all my hard work) starts over. It also creates a brand new page on facebook... argh.

Obviously, I can recreate my page on the newly created FB page and re-invite all my friends, but this wastes weeks of work and annoys my already pseudo friends. Any ideas before I do this?

For reference, here is the like iframe:

<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.mywebsite.com&layout=standard&show_faces=true&width=450&action=like&font&colorscheme=light&height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>

open graph...

<meta property="og:title" content="my title" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://www.mywebsite.com" />
<meta property="og:image" content="http://www.mywebsite.com/image.png" />
<meta property="og:site_name" content="site name" />
<meta property="fb:app_id" content="xxxxxxxxx" />

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

皓月长歌 2024-11-02 04:42:52

您可以将 href 属性更改为您已创建的页面。
您不能在自己的主页上使用 og 标签,但可以使用 Facebook 页面属性。

所以

<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.mywebsite.com&layout=standard&show_faces=true&width=450&action=like&font&colorscheme=light&height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>

改为

<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2F*your facebook page (with escaped slashes and so on)*&layout=standard&show_faces=true&width=450&action=like&font&colorscheme=light&height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>

You can change the href attribute to the page you've already created.
You cannot use the og-tags on your own homepage then but the Facebook-Page attributes are used.

so change

<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.mywebsite.com&layout=standard&show_faces=true&width=450&action=like&font&colorscheme=light&height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>

to

<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2F*your facebook page (with escaped slashes and so on)*&layout=standard&show_faces=true&width=450&action=like&font&colorscheme=light&height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文