설명
잘못된 타임스탬프 문제는 review
또는 merchant
에 잘못된 create_timestamp
또는 last_update_timestamp
이 포함된 경우 또는 create_timestamp
이 last_update_timestamp
보다 늦은 경우에 발생합니다.
해결 방법
review
또는 merchant
을 전달하여 create_timestamp
및 last_update_timestamp
이 유효한지 확인합니다.
예
3월 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>
위 파일에는 create_timestamp
이 last_update_timestamp
뒤에 있는 merchant
항목이 포함되어 있습니다. 피드를 처리한 후 지원팀에서 데이터 문제(잘못된 타임스탬프)가 발생했다고 알립니다.
며칠 후 문서를 검토한 후 잘못된 등급 문제를 해결하기 위해 '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>