我正在尝试使用curl API更新walmart库存,但面临400错误响应代码的问题。
这是我的示例代码:我关注了walmart doc,访问了与walmart文档相关的错误代码,发现他们要求提交故障单,因此未公开找到解决方案。
$URL = "https://marketplace.walmartapis.com/v2/inventory?sku=xxxxx";
$RequestMethod = 'PUT';
$Timestamp = round(microtime(true) * 1000); //Current system timestamp
$WalmartConsumerID = "xxxxxxxxxxxxxxxxxxxxxxx";
$Signature = _GetWalmartAuthSignature($URL, $RequestMethod, $Timestamp);
$headers = array();
$headers[] = "Accept: application/xml";
$headers[] = "Content-type: application/xml";
$headers[] = "WM_SVC.NAME: Walmart Marketplace";
$headers[] = "WM_QOS.CORRELATION_ID: ".mt_rand();
$headers[] = "WM_SEC.TIMESTAMP: ".$Timestamp;
$headers[] = "WM_SEC.AUTH_SIGNATURE: ".$Signature;
$headers[] = "WM_CONSUMER.ID: ".$WalmartConsumerID;
$headers[] = "WM_CONSUMER.CHANNEL.TYPE: 0f3e4dd4-0514-4346-b39d-af0e00ea";
$data = file_get_contents('inventory.xml');
$ch = curl_init($URL);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "PUT");
curl_setopt($ch, CURLOPT_POSTFIELDS,$data);
$response = curl_exec($ch);
echo $erroe = curl_error($ch);
echo $httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
响应:400
这就是walmart api文档中的确切解释。
P.S:使用相同的密钥和签名即可正常工作,获取库存,订单和更新价格。 这是我的xml数据
<?xml version="1.0" encoding="UTF-8"?>
<inventory xmlns:ns2="http://walmart.com/">
<sku>Cxxxx2</sku>
<quantity>
<unit>EACH</unit>
<amount>7</amount>
</quantity>
<fulfillmentLagTime>1</fulfillmentLagTime>
</inventory>
答案 0 :(得分:0)
其他API是否正常运行?我问的原因是因为我看到在_GetWalmartAuthSignature的示例代码中,您没有传递生成签名所需的使用者ID和私钥。
还可以发布您遇到的所有错误吗?
它们还具有一种新的基于令牌的身份验证方法,该方法要简单得多。
https://developer.walmart.com/#/apicenter/marketPlace/latest#apiAuthentication
还要检查GET库存是否在相同的sku上正常工作
---更新----
看起来请求有效负载缺少
<?xml version="1.0" encoding="UTF-8"?>
---更新---
您的xml不符合xsd 使用它(删除:ns2)
<?xml version="1.0" encoding="UTF-8"?>
<inventory xmlns="http://walmart.com/">
<sku>Cxxxx2</sku>
<quantity>
<unit>EACH</unit>
<amount>7</amount>
</quantity>
<fulfillmentLagTime>1</fulfillmentLagTime>
</inventory>