الطابع الزمني غير صالح

الوصف

تحدث مشكلة في الطابع الزمني غير صالح عندما تحتوي review أو merchant على create_timestamp أو last_update_timestamp غير صالح أو عندما يكون create_timestamp بعد last_update_timestamp.

كيفية الإصلاح

أرسِل السمة review أو merchant لضمان أن create_timestamp وlast_update_timestamp صالحتان.

مثال

في 1 آذار (مارس)، ستحمّل ملف الخلاصة "&2017_03_01.xml&quot إلى نقطة النهاية. يتضمّن الملف المحتوى التالي:

<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. بعد معالجة خلاصتك، يُبلغك فريق الدعم بحدوث مشكلة في البيانات، والطابع الزمني غير الصالح.

بعد بضعة أيام، بعد مراجعة المستندات، حمِّل الملف "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>