说明
如果 review
或 merchant
包含无效的 create_timestamp
或 last_update_timestamp
,或者 create_timestamp
在 last_update_timestamp
之后,就会发生时间戳无效的问题。
解决方法
传递 review
或 merchant
,确保 create_timestamp
和 last_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>
以上文件包含一个 create_timestamp
位于 last_update_timestamp
之后的 merchant
条目。处理完您的 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>