การประทับเวลาไม่ถูกต้อง

คำอธิบาย

ปัญหาการประทับเวลาที่ไม่ถูกต้องเกิดขึ้นเมื่อ review หรือ merchant มี create_timestamp หรือ last_update_timestamp ที่ไม่ถูกต้อง หรือเมื่อ create_timestamp อยู่หลัง last_update_timestamp

วิธีแก้ไข

ส่ง review หรือ merchant โดยตรวจสอบว่า create_timestamp และ last_update_timestamp ถูกต้อง

ตัวอย่าง

ในวันที่ 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 หลังจาก ประมวลผลฟีดแล้ว ทีมสนับสนุนจะแจ้งให้คุณทราบว่าเกิดปัญหาเกี่ยวกับข้อมูล ซึ่งก็คือการประทับเวลาที่ไม่ถูกต้อง

หลังจากนั้น 2-3 วัน เมื่ออ่านเอกสารประกอบแล้ว คุณจะอัปโหลดไฟล์ "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>