無效的時間戳記

說明

如果 reviewmerchant 包含無效的 create_timestamplast_update_timestamp,或者 create_timestamp 晚於 last_update_timestamp,就會發生無效的時間戳記問題。

如何修正

提交 reviewmerchant,確保 create_timestamplast_update_timestamp 有效。

範例

3 月 1 日,您將動態饋給檔案「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。處理動態饋給後,支援團隊會通知您發生資料問題 (時間戳記無效)。

幾天後,等您查看說明文件後,再將檔案「quot;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>