Walmart API - 有效负载mime类型问题 - 批量创建/更新项目无效

时间:2017-01-12 03:59:57

标签: http-post walmart-api

我能够成功地对其他Walmart API端点进行API调用(特别是GET请求端点),但是批量项端点(POST请求)会导致错误,即使我似乎一切都正确。

以下是对该端点的引用 https://developer.walmartapis.com/#bulk-createupdate-items

HTTP响应元信息

500内部服务器错误

XML

HTTP响应

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ns2:errors xmlns:ns2="http://walmart.com/">
    <ns2:error>
        <ns2:code>SYSTEM_ERROR.GMP_GATEWAY_API</ns2:code>
        <ns2:description>Couldn't determine the boundary from the message!</ns2:description>
        <ns2:info>System encountered some internal error.</ns2:info>
        <ns2:severity>ERROR</ns2:severity>
        <ns2:category>DATA</ns2:category>
        <ns2:causes/>
        <ns2:errorIdentifiers/>
    </ns2:error>
</ns2:errors>

HTTP请求:

网址 https://marketplace.walmartapis.com/v2/feeds?feedType=item

方法 POST

请求标题

WM_SVC.NAME: Walmart Marketplace
WM_CONSUMER.ID: {my consumer id key}
WM_QOS.CORRELATION_ID: {my arbitrary text key}
Content-Type: multipart/form-data
Accept: application/xml
WM_SEC.AUTH_SIGNATURE:{my jar-file-generated key}
WM_SEC.TIMESTAMP:{my jar-file-generated timestamp}

POST有效负载(只是文本,参数没有键)

<?xml version="1.0" encoding="UTF-8"?>
<MPItemFeed xmlns="http://walmart.com/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://walmart.com/ MPItem.xsd ">
  <MPItemFeedHeader>
    <version>2.1</version>
    <requestId>qqq</requestId>
    <requestBatchId>qqq1</requestBatchId>
  </MPItemFeedHeader>
  <MPItem>
    <sku>qqq</sku>
    <Product>
      <productName>QQQ 1-Foot S-Video Male to 2 S-Video Female Y Cable (CSV2F)</productName>
      <longDescription><![CDATA[<div class="productDescriptionWrapper"> QVS Premium S-Video Mini4 Male to Two Female Splitter Cable CSV2F A/V Device Cables <div class="emptyClear">
      </div>
      </div>]]></longDescription>
      <shelfDescription><![CDATA[QVS 1-Foot S-Video Male to 2 S-Video Female Y Cable (CSV2F)]]></shelfDescription>
      <shortDescription>QQQ 1-Foot S-Video Male to 2 S-Video Female Y Cable (CSV2F)</shortDescription>
      <mainImage>
        <mainImageUrl>http://images.antonline.com/img-main/500/037229400328.jpg</mainImageUrl>
      </mainImage>
      <productIdentifiers>
        <productIdentifier>
          <productIdType>Item ID</productIdType>
          <productId>46817049</productId>
        </productIdentifier>
      </productIdentifiers>
      <productTaxCode>2038710</productTaxCode>
      <Electronics>
        <brand>QQQ</brand>
        <ElectronicsCables>
        </ElectronicsCables>
      </Electronics>
    </Product>
    <price>
      <currency>USD</currency>
      <amount>12.34</amount>
    </price>
    <shippingWeight>
      <value>1.234</value>
      <unit>LB</unit>
    </shippingWeight>
  </MPItem>
</MPItemFeed>

备注:

在发出http请求时,我尝试使用Google的高级REST客户端应用程序以及POSTMAN,以排除源自我的代码的问题。

我试过调整想到的一切。

我有其他端点有GET请求工作,所以我知道它不是身份验证,IP,防火墙或类似的问题。

我知道由walmart提供的jar文件生成的凭据(请参阅 文档https://developer.walmartapis.com/#jar-executable-recommended的身份验证部分)必须提供您要发送的网址。所以我知道这不是用jar文件生成错误密钥的问题。

假设:

  • 根据回复,我发送的数据或标题必定​​存在问题。
  

无法确定消息的边界!

听起来像xml没有平衡标签,但我已经验证了这个xml

  • 此端点的walmart api文档说使用标头Content-Type: multipart/form-data;。所以我做了,导致了失败的反应。

但是使用这个标题对我来说似乎没有意义,因为有效负载主体是一个xml字符串。不应该是Content-Type: application/xml吗?我也试过这个,但上面的响应失败却失败了(500,SYSTEM_ERROR.GMP_GATEWAY_API,无法确定消息的边界!)

所以似乎可以排除Content-Type: application/xml

  • walmart api文档仅提供了如何更改产品ID或sku的示例,但不提供用于创建的示例。我假设我只是省略了特定于更新产品ID或sku的xml标签,但是xml有效负载也会导致500响应。

我没有想法,有没有其他人获得批量创建/更新项目? 任何人都有实际工作的示例代码吗?

5 个答案:

答案 0 :(得分:3)

问题在于它需要HTTP请求边界。

由于mime类型是multipart / form-data,它需要一些东西:

  1. 标题行应为Content-Type: multipart/form-data; boundary=qwerty,其中qwerty是您选择的任意字符串。
  2. 有效负载正文需要以--qwerty开头,并以--qwerty--
  3. 结尾

答案 1 :(得分:3)

如果有人使用PHP绊倒了这个并且在尝试OP的解决方案后仍然遇到问题(例如 500 响应消息&#34; 无法&#t; t确定消息的边界!&#34;或&#34; 系统遇到一些内部错误&#34;,您可以使用cURL通过传递自动处理边界CURLOPT_POSTFIELDS作为数组,如下所示:

curl_setopt($c, CURLOPT_POSTFIELDS, ['file' => $xml]);

答案 2 :(得分:1)

以下是工作请求的示例:

POST /v2/feeds?feedType=inventory
Content-Length: 750
Content-Type: multipart/form-data; boundary=72c4c966adda8bba2e0b3ebc3176cc0c395dd8c8
Host: marketplace.walmartapis.com
Accept: application/xml
Accept-Encoding: gzip, deflate, br
User-Agent: <...>
Accept-Language: en-US
WM_CONSUMER.CHANNEL.TYPE: <...>
WM_CONSUMER.ID: <...>
WM_SEC.TIMESTAMP: <...>
WM_SEC.AUTH_SIGNATURE: <...>
WM_SVC.NAME: Walmart Marketplace
WM_QOS.CORRELATION_ID: <...>

--72c4c966adda8bba2e0b3ebc3176cc0c395dd8c8
Content-Disposition: form-data; name="xml"
Content-Length: 591

<?xml version="1.0" encoding="UTF-8"?>
<InventoryFeed xmlns="http://walmart.com/">
  <InventoryHeader>
    <version>1.4</version>
  </InventoryHeader>
  <inventory>
    <sku>sku</sku>
    <quantity>
      <unit>EACH</unit>
      <amount>1</amount>
    </quantity>
    <fulfillmentLagTime>5</fulfillmentLagTime>
  </inventory>
</InventoryFeed>

--72c4c966adda8bba2e0b3ebc3176cc0c395dd8c8--

答案 3 :(得分:1)

我通过以这种方式格式化我的有效负载来修复此问题:

 $eol = "\r\n";
$data = '';

$mime_boundary="12345";

$data .= '--' . $mime_boundary . $eol;
$data .= '<?xml version="1.0"?>' . $eol . $eol;
$data .= '<MPItemFeed xmlns="http://walmart.com/">' . $eol;
$data .= '<MPItemFeedHeader>' . $eol;
$data .= '<version>2.1</version>' . $eol;
$data .= '<mart>WALMART_US</mart>' . $eol;
// $data .= '<locale>en_US</locale>' . $eol;
$data .= '</MPItemFeedHeader>' . $eol;



$data .= '<MPItem>' . $eol;
$data .= '<sku>UHP-8224-JH</sku>' . $eol;
$data .= '<productIdentifiers>' . $eol;
$data .= '<productIdentifier>' . $eol;
$data .= '<productIdType>UPC</productIdType>' . $eol;
$data .= '<productId>849849004721</productId>' . $eol;
$data .= '</productIdentifier>' . $eol;
$data .= '</productIdentifiers>' . $eol;
$data .= '<MPProduct>' . $eol;
$data .= '<productName>295 / 30 R 22 103Y  ANTARES MAJORIS M5  30 K MILES </productName>' . $eol;
$data .= '<ProductIdUpdate>No</ProductIdUpdate>' . $eol;
// $data .= '<SkuUpdate>No</SkuUpdate>' . $eol;
$data .= '<category>' . $eol;
$data .= '<Vehicle>' . $eol;
//$data .= '<Vehicle>' . $eol;
$data .= '<shortDescription>295 / 30 R 22 103Y  ANTARES MAJORIS M5  30 K MILES</shortDescription>' . $eol;
$data .= '<brand>ANTARES</brand>' . $eol;
$data .= '<mainImageUrl>https://www.stuff4crafts.com/media/catalog/product/4/3/437764.jpg</mainImageUrl>' . $eol;
$data .= '<tireSize>2255516</tireSize>' . $eol;
$data .= '</Vehicle>' . $eol;
//$data .= '</Vehicle>' . $eol;
$data .= '</category>' . $eol;
$data .= '</MPProduct>' . $eol;
$data .= '<MPOffer>' . $eol;
$data .= '<price>203.99</price>' . $eol;
$data .= '<MinimumAdvertisedPrice>203.99</MinimumAdvertisedPrice>' . $eol;
$data .= '<ShippingWeight>' . $eol;
$data .= '<measure>0.8000</measure>' . $eol;
$data .= '<unit>lb</unit>' . $eol;
$data .= '</ShippingWeight>' . $eol;
$data .= '</MPOffer>' . $eol;
$data .= '</MPItem>' . $eol;



$data .= '</MPItemFeed>' . $eol;

$data .= "--" . $mime_boundary . "--" . $eol . $eol; // finish with two eol's!!

答案 4 :(得分:0)

选择你的任意字符串让我们说arbString例如abcdefghijklmnop(任何不应在XML主体中重复的字符串)

创建批量价格/库存的XM​​L有效负载(文件输入流)。 将您的Payload转换为String FileString = Ioutils.toString(“FIS”,standardCharacterset.UTF_8)。

现在附加“ - arbString / n / n”+ FileString +“/ n - arbString - ”