Açıklama
Geçersiz zaman damgası sorunu, review
veya merchant
, geçersiz bir create_timestamp
ya da last_update_timestamp
içerdiğinde veya create_timestamp
, last_update_timestamp
'den sonra olduğunda ortaya çıkar.
Nasıl düzeltilir?
review
veya merchant
öğesini, create_timestamp
ve last_update_timestamp
öğelerinin geçerli olduğundan emin olarak yayınlayın.
Örnek
1 Mart'ta "2017_03_01.xml" feed dosyasını bitiş noktanıza yüklüyorsunuz. Dosya aşağıdaki içerikleri barındırır:
<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>
Yukarıdaki dosya, merchant
girişi içeriyor. Bu girişin create_timestamp
değeri, last_update_timestamp
değerinden sonra geliyor. Feed'iniz işlendikten sonra destek ekibi, bir veri sorunu (geçersiz zaman damgası) oluştuğunu bildirir.
Birkaç gün sonra, dokümanları inceledikten sonra geçersiz derecelendirme sorununu çözmek için "2017_03_04-fix.xml" dosyasını uç noktanıza yüklersiniz:
<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>