私は、すべてのURLフィールドに同じドメインを提供してきたエラーListItem Schema [schema.org/ItemList]エラー:「URLに指定されたすべての値に同じドメインが必要です。」
All values provided for url must have the same domain.
を取得https://search.google.com/structured-data/testing-tool/u/0/ にこのListItemのスキーマ検証で問題に直面しています。
{
"@context": "http://schema.org",
"@type": "ItemList",
"name": "Tech News",
"url": "http://m.gadgetsnow.com/tech-news",
"itemListElement": [
{
"@type": "ListItem",
"position": "1",
"url": "http://m.gadgetsnow.com/tech-news/are-tvs-going-out-of-fashion/articleshow/58375579.cms",
"name": "Are TVs going out of fashion?",
"image": {
"@type": "ImageObject",
"contentUrl": "http://m.gadgetsnow.com/photo/58375579.cms",
"width": "360",
"height": "270",
"url": "http://m.gadgetsnow.com/photo/58375579.cms"
}
},
{
"@type": "ListItem",
"position": "2",
"url": "http://m.gadgetsnow.com/tech-news/reliance-jio-discounts-are-not-going-anywhere-for-now-heres-why/articleshow/58374335.cms",
"name": "Reliance Jio discounts are not going anywhere for now, here's why",
"image": {
"@type": "ImageObject",
"contentUrl": "http://m.gadgetsnow.com/photo/58374335.cms",
"width": "360",
"height": "270",
"url": "http://m.gadgetsnow.com/photo/58374335.cms"
}
}
]
}
[多分同じバグ(http://stackoverflow.com/a/40400319/1591669)。 – unor