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

คำอธิบาย

ปัญหาการประทับเวลาที่ไม่ถูกต้องเกิดขึ้นเมื่อ 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>