无法更改 magento 网站的 facebook 缩略图

Unable to change facebook thumbnail image for magento site

我已将以下代码添加到 magento 站点以更新 FB 缩略图。

1column.phtml

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->getLang() ?>" lang="<?php echo $this->getLang() ?>" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml">

head.phtml

<meta property ="og:image" content="www.rekinza.com/images/rekinza-fb_logo.jpg"/>

但是,当我将 link 放入 FB post 时,Facebook 仍然从主页中随机选取一张图片 post。

我尝试验证我的更改是否反映在网站中,所以我使用查看源代码进行了检查并找到了以下结果

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml">

<meta property ="og:image" content="www.rekinza.com/images/rekinza-fb_logo.jpg"/>

head.phtml

<meta property ="og:image" content="www.rekinza.com/images/rekinza-fb_logo.jpg"/>

请帮忙!我花了太多时间试图解决这个问题。

谢谢!

首先,更正 URL 并确保没有错位的空格,使用 http 或 https(如果您有证书):

<meta property="og:image" content="https://www.rekinza.com/images/rekinza-fb_logo.jpg"/>

然后,查看 Open Graph 图像的规格:https://developers.facebook.com/docs/sharing/best-practices#images