这是我第一次接触eBay接口,一开始我就遇到了问题。我正在用python编写代码,并试图调用addItem,但我无法正确定义国际运输选项。
我想把我的商品寄往国内,2.50英镑,国际到亚洲,日本,澳大利亚20英镑,欧洲,EuropeanUnion,德国10英镑。我不知道该怎么声明它。
到目前为止我被试过的是什么?
"ShippingDetails": {
"GlobalShipping": "true",
"ShippingType": "Flat",
"ShippingServiceOptions": {
"ShippingService": "UK_OtherCourier",
"ShippingServiceCost": "2.50",
},
"InternationalShippingServiceOption": {
"ShippingService": "UK_RoyalMailAirmailInternational",
"ShippingServiceCost": "10",
"ShipToLocation": "Europe",
"ShipToLocation": "EuropeanUnion",
"ShipToLocation": "DE"
}
}
但当我运行该代码时,我的清单只有2.50英镑的国内运费和10英镑的德国运费(只保存了最后一个ShipToLocation )。如何正确设置有成本的发货区域?
https://stackoverflow.com/questions/38187207
复制相似问题