Facebook 集成,特定产品页面上的推荐按钮 +显示产品图片

发布于 2025-01-07 01:47:27 字数 145 浏览 0 评论 0原文

我有一个关于如何集成 Facebook 插件推荐按钮的问题。 我从 facebook 上获取了类似按钮的代码,并将其放在我想要显示的页面上。但这只会在当前页面上使用网站的随机图片和文本创建点赞。

我希望按钮与产品图片和描述相关联。 有人有这样的代码可以分享吗?

I have a question about how to integrate the facebook plugin, recommendbutton.
I got the code from facebook like button and put it on the page where i want it displayed. But this only creates a like on the current page with a radom picture of the site and text.

I want the button to be associated with the productpicture and description.
Does anyone have a code like this to share?

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

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

发布评论

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

评论(3

又爬满兰若 2025-01-14 01:47:27

查看 http://ogp.me/ 了解 OG 元标记的说明,这些标记可帮助 Facebook 展示您的产品以更有意义的方式。您可以使用调试工具来测试 URL https://developers.facebook.com/tools/debug 查看OG标签是否添加正确。

如果您的页面需要登录,则您需要拥有一个在未登录时仍显示 OG 标签和基本内容的页面版本,或者拥有一个在用户代理是 Facebook Scraper 时显示正确标签的规则。请参阅 https://developers.facebook.com/docs/reference/plugins/like /#scraperinfo 有关所使用的用户代理字符串的信息。

Take a look at http://ogp.me/ for a description of the OG meta tags which help Facebook display your product in a more meaningful way. You can test a URL using the debug tool at https://developers.facebook.com/tools/debug to see whether the OG tags have been added correctly.

If your page is behind a login, you'll need to either have a version of the page that still displays OG tags and basic content when not logged in, or have a rule that shows the correct tags when the User Agent is the Facebook Scraper. See https://developers.facebook.com/docs/reference/plugins/like/#scraperinfo for info on the User Agent string used.

陈甜 2025-01-14 01:47:27

只需将 data-href 添加到您的 Facebook 类似代码中即可:

            <div id="{{ item.product.code }}"
                    class="fb-like"
                    data-share="false"
                    data-href="{{ url }}"
                    data-width="250"
                    data-show-faces="true">
            </div>

Just add data-href to your Facebook like code:

            <div id="{{ item.product.code }}"
                    class="fb-like"
                    data-share="false"
                    data-href="{{ url }}"
                    data-width="250"
                    data-show-faces="true">
            </div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文