1

我想知道是否有人尝试通过本地取货将产品加载到 eBay。通常我会在 eBay 论坛上问这些问题,(我刚才也是这样做的)但我被困住了。我需要设置一个产品(或者更确切地说是 80k 产品)以包括本地取货。但是我发现的所有 API 参考似乎都没有确定下来。

同样,我知道这可能会更好地放在 eBay 论坛上,但尝试过但失败了。

任何帮助,将不胜感激。

当我包括

 <ShippingServiceOptions>
    <ShippingService>Pickup</ShippingService>
    <ShippingServiceCost currencyID="AUD">0.00</ShippingServiceCost>
    <ShippingServiceAdditionalCost currencyID="AUD">0.00</ShippingServiceAdditionalCost>
    <ExpeditedService>false</ExpeditedService>
    <FreeShipping>true</FreeShipping>
    <ShippingServicePriority>2</ShippingServicePriority>
  </ShippingServiceOptions>

我回来

  <ShortMessage>Shipping service is not available.</ShortMessage>
  <LongMessage>Shipping service Local Pickup(150) is not available.</LongMessage>
  <ErrorCode>12519</ErrorCode><SeverityCode>Error</SeverityCode>
4

1 回答 1

1

好的..我进入 eBay 的管理员并手动更改了一条记录,然后做了一个 getItem

这是我回来的细节。

<ShippingServiceOptions>
        <ShippingService>AU_Pickup</ShippingService>
        <ShippingServiceCost currencyID="AUD">0.0</ShippingServiceCost>
        <ShippingServiceAdditionalCost currencyID="AUD">0.0</ShippingServiceAdditionalCost>
        <ShippingServicePriority>2</ShippingServicePriority>
        <ExpeditedService>false</ExpeditedService>
</ShippingServiceOptions>

我没有留下深刻的印象,因为这意味着我必须在设置之前测试商店所在的国家/地区。哎呀。

于 2013-02-07T05:19:52.273 回答