Json 富评论片段不显示

Json 富评论片段不显示,json,schema,code-snippets,google-rich-snippets,google-reviews,Json,Schema,Code Snippets,Google Rich Snippets,Google Reviews,在过去的两个月里,我一直在努力让评论片段发挥作用。有一次我会用谷歌搜索它,看看我的星星,但现在它又消失了,我想不出什么原因,因为我没有做任何改变。 我还设置了canonical标记。 代码: { “@context”:”http://schema.org/", “页面维护”:{ “@type”:“网页”, “@id”:”https://androidshark.com/traffic-racer.html" }, “图像”:https://androidshark.com/img/icons/

在过去的两个月里,我一直在努力让评论片段发挥作用。有一次我会用谷歌搜索它,看看我的星星,但现在它又消失了,我想不出什么原因,因为我没有做任何改变。 我还设置了canonical标记。 代码:


{
“@context”:”http://schema.org/",
“页面维护”:{
“@type”:“网页”,
“@id”:”https://androidshark.com/traffic-racer.html"
},
“图像”:https://androidshark.com/img/icons/trafficRacer22.jpg",
“url”:”https://androidshark.com/traffic-racer.html",
“描述”:“这不是每个人都喜欢的,但如果你喜欢这样的手机游戏,那么这是游戏商店免费端提供的一种更好的体验。”,
“@type”:“产品”,
“名称”:“交通车手评论”,
“审查”:{
“@type”:“Review”,
“发布日期”:“2020-12-17T00:44:16.000Z”,
“标题”:“交通车手评论-安卓鲨鱼”,
“出版商”:{
“@type”:“组织”,
“名称”:“安卓鲨鱼”,
“徽标”:{
“@type”:“ImageObject”,
“url”:”https://androidshark.com/img/razLogo.png"
}
},
“作者”:{
“@type”:“Person”,
“名称”:“Spike”
},
“复习”:{
“@type”:“评级”,
“评级价值”:7,
“Worsting”:0,
“最佳评分”:10
}
}
}

我还多次重新索引了这个页面,并用一个合适的robots.txt文件更新了站点地图

这5条警告是可选的,例如“聚合”,因为这是一个评论家评论网站。 在这一点上,我不知道该怎么办。任何帮助都将不胜感激

<script type = "application/ld+json">
        {
        "@context":"http://schema.org/",
        "mainEntityOfPage":{
           "@type":"WebPage",
           "@id":"https://androidshark.com/traffic-racer.html"
        },
        "image":"https://androidshark.com/img/icons/trafficRacer22.jpg",
        "url":"https://androidshark.com/traffic-racer.html",
        "description":"It’s not everyone’s cup of tea, but if you enjoy mobile games like these then this is one of the finer experiences the free side of the Play Store offers.",
        "@type":"Product",
        "name":"Traffic Racer Review",
        "review":{
           "@type":"Review",
           "datePublished":"2020-12-17T00:44:16.000Z",
           "headline":"Traffic Racer Review - Android Shark",
           "publisher":{
              "@type":"Organization",
              "name":"Android Shark",
              "logo":{
                 "@type":"ImageObject",
                 "url":"https://androidshark.com/img/razLogo.png"
              }
           },
           "author":{
              "@type":"Person",
              "name":"Spike"
           },
    
           "reviewRating":{
              "@type":"Rating",
              "ratingValue":7,
              "worstRating":0,
              "bestRating":10
           }
        }
     }
    </script>