Ebay PHP API-添加全球运输-“要求卖方提供运输方式”吗?

时间:2019-01-02 15:52:13

标签: php ebay ebay-api

我正在使用Ebay PHP SDK添加物品的运输:

$shippingService = new \DTS\eBaySDK\Trading\Types\InternationalShippingServiceOptionsType();
$shippingService->ShippingServicePriority = 3;
$shippingService->ShippingService = 'DE_PaketInternational';
$shippingService->ShippingServiceCost = new \DTS\eBaySDK\Trading\Types\AmountType(array('value' => 0.00));
$shippingService->ShipToLocation = array('Worldwide');
$item->ShippingDetails->InternationalShippingServiceOption[] = $shippingService;

但结果是-该商品的全球运费为0。 (全球免费送货)

如何实现:

  1. 全球运输
  2. 联系卖家,并要求将送货方式送到您的所在地。

示例:

  • Ebay item - 252395262817
  • 选择摩洛哥
  • 您将看到:该物品将运到摩洛哥,但卖家未指定运送选项。联系卖家,并要求将送货方式发送到您的所在地。
  • 请找到附带的屏幕截图作为示例:

Contact the seller and request a shipping method to your location

0 个答案:

没有答案