时间戳无效

说明

如果 reviewmerchant 包含无效的 create_timestamplast_update_timestamp,或者 create_timestamp 晚于 last_update_timestamp,则会发生时间戳无效问题。

解决方法

交付 reviewmerchant,确保 create_timestamplast_update_timestamp 有效。

示例

3 月 1 日,您将 Feed 文件“2017_03_01.xml”上传到端点。该文件包含以下内容:

<merchant id="2739">
  <name>Google Store</name>
  <merchant_url>http://store.google.com</merchant_url>
  <rating_url>http://www.example-reviews.com/m2739.html</rating_url>
  <create_timestamp>2017-02-25T03:02:23Z</create_timestamp>
  <last_update_timestamp>2017-02-25T03:01:32Z</last_update_timestamp>
</merchant>

上述文件包含一个 merchant 条目,其 create_timestamp 晚于 last_update_timestamp。处理完您的 Feed 后,支持团队通知您发生了数据问题(时间戳无效)。

几天后,在查看文档后,您将文件“2017_03_04-fix.xml”上传到端点,以解决无效分级问题:

<merchant id="2739">
  <name>Google Store</name>
  <merchant_url>http://store.google.com</merchant_url>
  <rating_url>http://www.example-reviews.com/m2739.html</rating_url>
  <create_timestamp>2017-02-25T03:02:23Z</create_timestamp>
  <last_update_timestamp>2017-02-25T03:02:23Z</last_update_timestamp>
</merchant>