생성 시간 변경됨

설명

생성 시간 변경 문제는 업데이트 간에 review 또는 merchant의 생성 시간이 서로 다른 경우에 발생합니다. 생성 시간은 변경할 수 없는 필드이므로 생성 시간을 변경하면 이 문제가 발생합니다.

해결 방법

다음 옵션 중 하나를 선택하여 문제를 해결하세요.

옵션 A:

원래 생성 시간을 사용하려면 원래 create_timestamp 및 업데이트된 last_update_timestamp를 사용하여 review 또는 merchant를 다시 전송하세요.

옵션 B:

새 생성 시간을 사용하려면 새 create_timestamp 및 업데이트된 last_update_timestampreview 또는 merchant을 다시 전송하세요. 그런 다음 항목이 포함된 파일 이름을 지원팀에 알립니다. 지원팀에서 이 문제를 해결하는 데 도움을 드릴 수 있습니다.

3월 1일에 피드 파일 '2017_03_01.xml'을 엔드포인트에 업로드합니다. 파일에 이전에 전송되지 않은 리뷰 항목이 포함되어 있습니다.

<review id="156368" mid="2739">
  <reviewer_name>Ada</reviewer_name>
  <create_timestamp>2017-02-25T03:02:23Z</create_timestamp>
  <last_update_timestamp>2017-02-25T03:02:23Z</last_update_timestamp>
  <country_code>US</country_code>
  <title>Great prices</title>
  <content>My order arrived on time and I got a great price.</content>
  <ratings>
    <overall min="1" max="10">9</overall>
    <customer_service min="1" max="10">10</customer_service>
  </ratings>
  <collection_method>after_fulfillment</collection_method>
</review>

다음 날 리뷰 '156368'의 생성 시간을 업데이트하는 다음 피드 파일 '2017_03_02.xml'을 제공합니다.

<review id="156368" mid="2739>
  <reviewer_name>Ada</reviewer_name>
  <create_timestamp>2017-02-26T11:01:42Z</create_timestamp>
  <last_update_timestamp>2017-02-26T11:01:42Z</last_update_timestamp>
  <country_code>US</country_code>
  <title>Great prices!</title>
  <content>My order arrived on time and I got a great price.</content>
  <ratings>
    <overall min="1" max="10">9</overall>
    <customer_service min="1" max="10">10</customer_service>
  </ratings>
  <collection_method>after_fulfillment</collection_method>
</review>

리뷰 '156368'의 두 번째 항목은 생성 시간에 충돌을 일으킵니다. 데이터 문제가 발생했음을 알리는 지원팀의 알림이 전송됩니다.

이 문제를 해결하는 방법을 설명하는 문서를 검토한 후 생성 시간을 원래대로 변경하기 위해 옵션 A를 선택합니다. 원래 생성 시간은 '2017-02-25T03:02:23Z'이므로 3월 10일에 다음 피드 파일 '2017_03_10-fix.xml'을 제공합니다.

<review id="156368" mid="2739">
  <reviewer_name>Ada</reviewer_name>
  <create_timestamp>2017-02-25T03:02:23Z</create_timestamp>
  <last_update_timestamp>2017-03-09T02:40:23Z</last_update_timestamp>
  <country_code>US</country_code>
  <title>Great prices!</title>
  <content>My order arrived on time and I got a great price.</content>
  <ratings>
    <overall min="1" max="10>9</overall>
    <customer_service min="1" max="10">10</customer_service>
  </ratings>
  <collection_method>after_fulfillment</collection_method>
</review>