Stempel waktu tidak valid

Deskripsi

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

Cara memperbaiki

Kirim review atau merchant yang memastikan bahwa create_timestamp dan last_update_timestamp valid.

Contoh

Pada tanggal 1 Maret, Anda akan mengupload file feed "2017_03_01.xml" ke endpoint. File 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, tim dukungan akan memberi tahu Anda bahwa terjadi masalah data, yaitu stempel waktu yang tidak valid.

Beberapa hari kemudian, setelah meninjau dokumentasi, upload file "2017_03_04-fix.xml" ke endpoint Anda untuk menyelesaikan masalah rating yang 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>