我正在尝试使用亚马逊MWS(在php中)在Amazon.de市场上传产品Feed但收到错误“您提交的XML在第8行(或附近)第8列的Amazon Envelope XML级别上格式不正确18" 。此外,当尝试通过暂存器(https://mws.amazonservices.de/scratchpad/index.html)上传相同的Feed时,它会上传。
这是我的XML请求:
<AmazonEnvelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="amzn-envelope.xsd">
<Header>
<DocumentVersion>1.01</DocumentVersion>
<MerchantIdentifier>M_RUPESH_123456</MerchantIdentifier>
</Header>
<MessageType>Product</MessageType>
<PurgeAndReplace>false</PurgeAndReplace>
<Message>
<MessageID>1</MessageID>
<OperationType>Update</OperationType>
<Product>
<SKU>p-24862</SKU>
<Condition>
<ConditionType>New</ConditionType>
</Condition>
<DescriptionData>
<Title><![CDATA[2012-13 Chile Puma Home Football Shirt]]></Title>
<Brand>Puma</Brand>
<Description>description</Description>
<BulletPoint>football</BulletPoint>
<Manufacturer>Puma</Manufacturer>
<SearchTerms>football</SearchTerms>
<RecommendedBrowseNode>324078011</RecommendedBrowseNode>
<TSDLanguage>English</TSDLanguage>
</DescriptionData>
<ProductData>
<Sports>
<ProductType>SportingGoods</ProductType>
<VariationData>
<Parentage><![CDATA[parent]]></Parentage>
<VariationTheme>Size</VariationTheme>
</VariationData>
</Sports>
</ProductData>
</Product>
</Message>
<Message>
<MessageID>2</MessageID>
<OperationType>Update</OperationType>
<Product>
<SKU>p-24862-Sma</SKU>
<StandardProductID>
<Type>UPC</Type>
<Value>4051412990195</Value>
</StandardProductID>
<Condition>
<ConditionType>New</ConditionType>
</Condition>
<DescriptionData>
<Title><![CDATA[2012-13 Chile Puma Home Football Shirt]]></Title>
<Brand>Puma</Brand>
<Description>description</Description>
<BulletPoint>football</BulletPoint>
<Manufacturer>Puma</Manufacturer>
<SearchTerms>football</SearchTerms>
<RecommendedBrowseNode>324078011</RecommendedBrowseNode>
<TSDLanguage>English</TSDLanguage>
</DescriptionData>
<ProductData>
<Sports>
<ProductType>SportingGoods</ProductType>
<VariationData>
<Parentage><![CDATA[child]]></Parentage>
<VariationTheme>Size</VariationTheme>
<Size>Small Adults</Size>
</VariationData>
</Sports>
</ProductData>
</Product>
</Message>
</AmazonEnvelope>
我不确定我到底做错了什么。
任何帮助都将不胜感激。
由于
答案 0 :(得分:1)
您的XML不仅格式正确,我还成功地根据我的亚马逊XSD副本验证了它。由于通过ScratchPad提交相同的Feed,我怀疑问题出在其他地方,而且与你得到的错误信息完全无关(这不是我第一次看到亚马逊的错误消息完全关闭)。
您使用的是亚马逊的示例PHP库还是您自己的代码?
答案 1 :(得分:1)
尝试在第一行添加以下内容,提供XML版本和编码详细信息
<?xml version="1.0" encoding="utf-8"?>