我需要使用任何样本工作XML来使用walmart api上传项目。
我已经尝试了很多创建XML但没有成功。
以下是我测试的XML数据。
<?xml version="1.0" encoding="UTF-8" ?>
<MPItemFeed xmlns="http://walmart.com/">
<MPItemFeedHeader>
<version>3.1</version>
</MPItemFeedHeader>
<MPItem>
<sku>78350426190609</sku>
<processMode>CREATE</processMode>
<productIdentifiers>
<productIdentifier>
<productIdType>UPC</productIdType>
<productId>78350426113604</productId>
</productIdentifier>
</productIdentifiers>
<MPProduct>
<productName>Electronic Cables_ Update3</productName>
<ProductIdUpdate>Yes</ProductIdUpdate>
<SkuUpdate>No</SkuUpdate>
<category>
<Electronics>
<ElectronicsCables>
<shortDescription>new United Facility Supply High-Volume Wrapping paper this is change to Partial update on PROMode is REPLACE_ALL</shortDescription>
<manufacturer>ECManu</manufacturer>
<manufacturerPartNumber>ECManu0354</manufacturerPartNumber>
<modelNumber>ECMan49_update</modelNumber>
<brand>NewECB brand</brand>
<mainImageUrl>https://i5.walmartimages.com/asr/d225a57c-18fa-46f1-b160-7e61a6fae8b1_1.487e4418d1c56266742b8a6942a3ac5e.jpeg</mainImageUrl>
<productSecondaryImageURL>
<productSecondaryImageURLValue>https://i5.walmartimages.com/asr/414422b1-b13a-40b5-9bdc-adfe24a0bad8_1.3473a55982153dc1dfb17294123124f5.jpeg</productSecondaryImageURLValue>
</productSecondaryImageURL>
<color>Blue</color>
<cableLength>
<measure>18.00</measure>
<unit>in</unit>
</cableLength>
<batteryTechnologyType>Alkaline</batteryTechnologyType>
<isProp65WarningRequired>No</isProp65WarningRequired>
</ElectronicsCables>
</Electronics>
</category>
</MPProduct>
</MPItem>
</MPItemFeed>
我收到了这个回复。
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ns2:PartnerFeedResponse xmlns:ns2="http://walmart.com/">
<ns2:feedId>A9CCFBD2054B43859744FE50DFADB9B3@AQMBAAA</ns2:feedId>
<ns2:feedStatus>PROCESSED</ns2:feedStatus>
<ns2:ingestionErrors/>
<ns2:itemsReceived>1</ns2:itemsReceived>
<ns2:itemsSucceeded>0</ns2:itemsSucceeded>
<ns2:itemsFailed>1</ns2:itemsFailed>
<ns2:itemsProcessing>0</ns2:itemsProcessing>
<ns2:offset>0</ns2:offset>
<ns2:limit>50</ns2:limit>
<ns2:itemDetails/>
</ns2:PartnerFeedResponse>
任何人都可以在上面的XML数据中解决这个问题吗?
先谢谢。
答案 0 :(得分:2)
交换processMode和sku标签的位置,如下所示:
<MPItem>
<processMode>CREATE</processMode>
<sku>78350426190609</sku>
<productIdentifiers>
您可以在以下位置找到当前的XSD https://developer.walmart.com/xsd/V3-Spec-Item-3.1-XSD.zip
-
您可能需要查看XML验证程序以帮助查找此类错误。
答案 1 :(得分:2)
以下XML是适用于Walmart产品上传的v3项目Feed的示例XML
<?xml version="1.0"?>
<MPItemFeed xmlns="http://walmart.com/">
<MPItemFeedHeader>
<version>3.1</version>
<mart>WALMART_CA</mart>
<locale>en_CA</locale>
</MPItemFeedHeader>
<MPItem>
<sku>437764</sku>
<productIdentifiers>
<productIdentifier>
<productIdType>UPC</productIdType>
<productId>028617433790</productId>
</productIdentifier>
</productIdentifiers>
<MPProduct>
<productName>Bistro Chalk Marker Chisel Tip-Silver 483-C-SLV</productName>
<ProductIdUpdate>No</ProductIdUpdate>
<SkuUpdate>No</SkuUpdate>
<category>
<ArtAndCraftCategory>
<ArtAndCraft>
<shortDescription>Bistro Chalk Marker Chisel Tip-Silver 483-C-SLV</shortDescription>
<brand>Uchida</brand>
<mainImageUrl>https://www.stuff4crafts.com/media/catalog/product/4/3/437764.jpg</mainImageUrl>
</ArtAndCraft>
</ArtAndCraftCategory>
</category>
</MPProduct>
<MPOffer>
<price>3.99</price>
<MinimumAdvertisedPrice>3.99</MinimumAdvertisedPrice>
<ShippingWeight>
<measure>0.8000</measure>
<unit>lb</unit>
</ShippingWeight>
<ProductTaxCode>2038710</ProductTaxCode>
</MPOffer>
</MPItem>
</MPItemFeed>
&#13;
processMode是默认的CREATE。您可以使用它或跳过它。如果使用它应该在标记之上。