Stempel waktu tidak valid

Deskripsi

Masalah stempel waktu tidak valid terjadi saat review atau merchant berisi create_timestamp atau last_update_timestamp yang tidak valid atau saat create_timestamp terjadi setelah last_update_timestamp.

Cara memperbaiki

Berikan review atau merchant, pastikan create_timestamp dan last_update_timestamp valid.

Contoh

Pada 1 Maret, Anda mengupload file feed "2017_03_01.xml" ke endpoint Anda. File tersebut berisi konten berikut:

<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>

File di atas berisi entri merchant yang create_timestamp-nya setelah last_update_timestamp. Setelah memproses feed Anda, tim dukungan akan memberi tahu Anda bahwa telah terjadi masalah data, stempel waktu tidak valid.

Beberapa hari kemudian, setelah meninjau dokumentasi, Anda mengupload file "2017_03_04-fix.xml" ke endpoint untuk menyelesaikan masalah rating tidak valid:

<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>