1

郵便配達員を介して Walmart API への API 呼び出しを行うことができます。セットアップ (複数) の POST 要求の応答は正常に郵便配達員に届きますが、ウォルマート FeedId ではエラーが表示されます。私は、Excel を介して別の方法で問題なく動作し、製品を Walmart に正常に公開しようとしています。API を介して、Walmart で製品を公開しないと機能しません。エラーを修正できますか。私はすべて正しいように見えますが。

**HTTP REQUEST**
[enter image description here][1]
[https://marketplace.walmartapis.com/v3/feeds?feedType=item][1]

**METHOD**

POST


**HTTP RESPONSE STATUS**

200 OK

**HTTP RESPONSE BODY**

{
    "feedId": "18486EF565B046D88641274001003195@AU8BCgA",
    "additionalAttributes": null,
    "errors": null
}

**REQUEST HEADERS**

Authorization :  "XXXXXXXXXXXXX"
WM_SEC.ACCESS_TOKEN: "XXXXXXXXXXXXXXXXXX"
WM_QOS.CORRELATION_ID: {my arbitrary text key}
WM_SVC.NAME: Walmart Marketplace
Accept: application/JSON

**POST PAYLOAD**
<pre><code>{
  "MPItem": [
    {
      "Item": {
        "sku": "xxxxxxxx",
        "ShippingWeight": "1LB",
        "price": " ",
        "productIdentifiers": {
          "productIdType": "UPC",
          "productId": "xxxxxxx"
        },
        "productCategory": "xxxxxxxx",
        "asin": "",
        "additionalProductAttributes": [
          {
            "productAttributeValue": "",
            "productAttributeName": ""
          }
        ],
        "additionalOfferAttributes": [
          {
            "additionalOfferAttributeName": "",
            "additionalOfferAttributeValue": ""
          }
        ]
      }
    }
  ],
  "MPItemFeedHeader": {
    "locale": "en",
    "sellingChannel": "mpsetupbymatch",
    "version": "1.0",
    "processMode": "REPLACE",
    "subset": "EXTERNAL",
    "Mart": "WALMART_US"
  } 
}</pre></code>

 


  [1]: https://i.stack.imgur.com/YwaMJ.png
4

1 に答える 1