Facebook 目录的微数据标签中的多个图像

multiple images in Microdata tags for Facebook catalogues

我正在尝试使用 json-ld 微型标签和 Facebook 像素将我的产品目录与我的网站同步,我设法同步了几乎所有内容,但仍然无法为每个产品同步多于一张图片,我尝试将链接作为字符串添加到标签“additional_image_link”中,但没有成功:(,有人能帮我吗?

thins 是我当前的微标签

<script type="application/ld+json">
  {
    "@context": "http://schema.org",
    "@type": "Product",
    "id":"92733",
    "description": "Lorem Ipsum is simply dummy text of the printing and typesetting industry.",
    "productID":"gc-wbax",
    "sku":"gc-wbax",
    "brand":"gc-wbax",
    "name": "Lorem Ipsum has been the industry's standard dummy text ever since the 1500s",
    "image_link": "https://example.com/0610061da72519685dbb74c629e0.webp",
    "additional_image_link" : "https://example.com/media/0f478bfd25ce1afef515d42f1274.webp;https://example.com/c73ae46fa96a85e0be20109469cd.webp",
    "offers": {
      "@type": "Offer",
      "itemCondition": "https://schema.org/NewCondition",
      "availability": "https://schema.org/InStock",
      "highPrice": "1700",
      "lowPrice": "1700",
      "price": "1700",
      "offerCount": "1",
      "priceCurrency": "USD"
    },
    "url": "https://example.com"
  }
</script>

您没有为正在使用的 json-ld/schema.org 代码使用正确的 属性 名称或语法。

多张图片会这样输入:

“图片”:[ "https://example.com/0610061da72519685dbb74c629e0.webp", "https://example.com/media/0f478bfd25ce1afef515d42f1274.webp", “https://example.com/c73ae46fa96a85e0be20109469cd.webp” ]

不清楚 Facebook 是否支持 json-ld/schema.org 中的多张图片。你将不得不测试。