我在易趣上通过xml上传产品时遇到问题。
我使用AddFixedPriceItem函数进行上传,它返回以下错误:
5013字符串值太长(项目细节:tagName)。 字符串“TagName”的值太长,将从项目细节中删除。 Maxinum lenght是“40”。
我可以在xml文件中查看什么内容?
感谢您的帮助。
答案 0 :(得分:1)
显然,您的问题是您为TagName提供的价值太长。它不能超过40个字符。
在您的XML中搜索<Name>
,并确保<Name></Name>
内的值少于40个字符。
<ItemSpecifics>
<NameValueList>
<Name> string </Name> // <--- This is what you are searching for. The value within must be less than 40 characters.
<Value> string </Value>
</NameValueList>
</ItemSpecifics>