You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AddFixedPriceItem: Class: RequestError, Severity: Error, Code: 10009, No <Item.Currency> exists or <Item.Currency> is specified as an empty tag. No <Item.Currency> exists or <Item.Currency> is specified as an empty tag in the request., Class: RequestError, Severity: Error, Code: 10009, No <Item.Country> exists or <Item.Country> is specified as an empty tag. No <Item.Country> exists or <Item.Country> is specified as an empty tag in the request., Class: RequestError, Severity: Error, Code: 10009, No <Item.ListingDuration> exists or <Item.ListingDuration> is specified as an empty tag. No <Item.ListingDuration> exists or <Item.ListingDuration> is specified as an empty tag in the request.
Is it possible to send plain xml?
Or i must convert it to dict?
Thanks!
Massimo
The text was updated successfully, but these errors were encountered:
I have the same question - I'm building an AddItem request in XML and converting it to a dict, but that conversion isn't working properly. There is a file input to the execute method - can that be used for an xml file?
Update:
I dug into the code a little bit and it would seem that no, an xml file can not be passed with the file argument.
Here's my kludegy workaround that seems to be working correctly.
I'm using a library called xmltodict.
The json library is also needed. This is because xmltodict outputs an OrderedDict and we need a normal dict, and the way I found of converting a nested OrderedDict to a Dict involves doing a json dump and load. Anyway...
say we have a string requestxml containing the following:
Hi,
Can i send directly an xml string instead of a dict data?
I tried to pass an xml for an AddFixedPriceItem but a have an error...
The xml:
but i got this error:
Is it possible to send plain xml?
Or i must convert it to dict?
Thanks!
Massimo
The text was updated successfully, but these errors were encountered: