如何通过我们的网站为任何特定的亚马逊卖家导入亚马逊产品与库存同步?

时间:2018-06-12 09:42:01

标签: amazon-mws

我想将亚马逊产品与我们的网站同步。 我使用过amazon MWS产品API,我得到的产品有任何规格的搜索类型,如SKU,SBIN等。我没有得到任何特定亚马逊卖家的所有亚马逊产品。虽然我如何将亚马逊库存与我们的网站同步?

我使用报告枚举(_GET_MERCHANT_LISTINGS_ALL_DATA_)使用了MWS报告API 并与卖方其他凭据。虽然我没有得到所有产品,但只有我得到RequestId。

使用ReportType(_GET_MERCHANT_LISTINGS_ALL_DATA_)的MWS重新发布API响应:

<?xml version="1.0"?>
<RequestReportResponse xmlns="http://mws.amazonaws.com/doc/2009-01-01/">
  <RequestReportResult>
    <ReportRequestInfo>
      <ReportType>_GET_MERCHANT_LISTINGS_ALL_DATA_</ReportType>
      <ReportProcessingStatus>_SUBMITTED_</ReportProcessingStatus>
      <EndDate>2018-06-11T18:30:00+00:00</EndDate>
      <Scheduled>false</Scheduled>
      <ReportRequestId>50024017694</ReportRequestId>
      <SubmittedDate>2018-06-12T09:58:21+00:00</SubmittedDate>
      <StartDate>2017-07-02T18:30:00+00:00</StartDate>
    </ReportRequestInfo>
  </RequestReportResult>
  <ResponseMetadata>
    <RequestId>4c48f34d-4ce1-42e1-bff6-785f8741679c</RequestId>
  </ResponseMetadata>
</RequestReportResponse>

当我使用ReportType枚举使用MWS报告API时(_GET_FLAT_FILE_ORDER_REPORT_DATA_) 并与卖方其他凭据。虽然我没有将任何产品库存与您的本地库存同步,但只有我获得RequestId。

使用ReportType的MWS重新发布API响应(_GET_FLAT_FILE_ORDER_REPORT_DATA_):

<?xml version="1.0"?>
<RequestReportResponse xmlns="http://mws.amazonaws.com/doc/2009-01-01/">
  <RequestReportResult>
    <ReportRequestInfo>
      <ReportType>_GET_CONVERGED_FLAT_FILE_ORDER_REPORT_DATA_</ReportType>
      <ReportProcessingStatus>_SUBMITTED_</ReportProcessingStatus>
      <EndDate>2018-06-12T10:13:36+00:00</EndDate>
      <Scheduled>false</Scheduled>
      <ReportRequestId>50025017694</ReportRequestId>
      <SubmittedDate>2018-06-12T10:13:36+00:00</SubmittedDate>
      <StartDate>2018-06-12T10:13:36+00:00</StartDate>
    </ReportRequestInfo>
  </RequestReportResult>
  <ResponseMetadata>
    <RequestId>29a91881-1fba-40eb-a6a0-213a67c4ed1f</RequestId>
  </ResponseMetadata>
</RequestReportResponse>

1 个答案:

答案 0 :(得分:0)

我没有获得任何特定亚马逊卖家的所有亚马逊产品

为此,您需要使用您的开发人员ID获得特定卖家的MWS凭证。

获得卖方的MWS凭证(merchantId,marketplaceId,keyId,secretKey,amazonServiceUrl)后,您可以使用报告枚举(_GET_MERCHANT_LISTINGS_ALL_DATA _)

使用MWS报告API获取所有产品

要使产品库存与本地库存同步,您可以使用订单API或使用_GET_FLAT_FILE_ORDER_REPORT_DATA_枚举报告API。