0

Amazon MWS の経験がある人なら誰でも助けてくれるかもしれません。セラーセントラルアカウントの在庫に XML 経由で商品をプッシュしようとしています。しかし、そこには表示されません。

Amazonが提供するサンプルファイルを使用しています。

<?xml version="1.0" encoding="iso-8859-1"?>
<AmazonEnvelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xsi:noNamespaceSchemaLocation="amzn-envelope.xsd">
  <Header>
    <DocumentVersion>1.01</DocumentVersion>
<MerchantIdentifier>merchant_id</MerchantIdentifier>
  </Header>
  <MessageType>Product</MessageType>
  <PurgeAndReplace>false</PurgeAndReplace>
   <Message>
    <MessageID>1</MessageID>
    <OperationType>Update</OperationType>
    <Product>
      <SKU>56789</SKU>
      <StandardProductID>
        <Type>ASIN</Type>
        <Value>B00AK3RCQM</Value>
      </StandardProductID>
      <ProductTaxCode>A_GEN_NOTAX</ProductTaxCode>
      <DescriptionData>
        <Title>Example Product Title</Title>
    <Brand>Example Product Brand</Brand>
    <Description>This is an example product description.</Description>
    <BulletPoint>Example Bullet Point 1</BulletPoint>
    <BulletPoint>Example Bullet Point 2</BulletPoint>
    <MSRP currency="USD">25.19</MSRP>
    <Manufacturer>Example Product Manufacturer</Manufacturer>
    <ItemType>example-item-type</ItemType>
  </DescriptionData>
  <ProductData>
    <Health>15
      Amazon Marketplace Web Service Feeds API 15
      Section Reference (API Version 2009-01-01)
      15
      <ProductType>
        <HealthMisc>
          <Ingredients>Example Ingredients</Ingredients>
          <Directions>Example Directions</Directions>
        </HealthMisc>
      </ProductType>
    </Health>
  </ProductData>
</Product>
  </Message>
</AmazonEnvelope>

応答は次のようになります

FeedSubmissionId 7409597458

FeedType _POST_PRODUCT_DATA_

SubmittedDate 2013-06-25T12:24:45Z

FeedProcessingStatus _SUBMITTED_
4

1 に答える 1

0

詳細なレポート応答を取得するには、Amazon MWS Reports API を使用する必要があります。FeedSubmissionId を送信して応答を待つだけです。応答には、Amazon がファイルを受け入れなかった理由の詳細が含まれています。ドキュメントへのリンクは次のとおりです: https://developer.amazonservices.com/gp/mws/api.html?ie=UTF8§ion=reports&group=bde

于 2014-02-28T17:43:17.730 に答える