非美国账户的PayPal运费

时间:2011-08-20 17:32:16

标签: paypal shipping

我有和澳大利亚PayPal帐户,我用来通过基本网站付款按钮在我的网站上处理付款。航运区域似乎只适用于美国账户。有没有办法为澳大利亚帐户设置不同的运费区域价格。

这样的东西
Domestic (Australia) : $5
North and South America: $15
Europe and Africa: $20

干杯

凸轮

1 个答案:

答案 0 :(得分:1)

当您使用其API时,PayPal会在返回的数组中提供SHIPTOCOUNTRYCODE键。对于英国,代码是GB。您可以使用它来确定运费:

if ($return_data['SHIPTOCOUNTRYCODE'] == 'AUS') {
  $shipping_cost = 5;
else if (something...) {
  ...
}