PayPal v.zero 多币种支持
PayPal v.zero multi-currency support
我正在编写一个使用 PayPays Express Checkout 和 v.zero API 的系统。我遇到的问题是它只接受美元付款,但我需要接受美元、英镑、澳元和欧元。我正在按如下方式处理交易:
$transaction = array(
'amount' => $order->cost_total,
'paymentMethodNonce' => $info->nonce,
'orderId' => $orderId,
'descriptor' => array(
'name' => '-removed-',
),
'shipping' => array(
'firstName' => $info->firstName,
'lastName' => $info->lastName,
'company' => '',
'streetAddress' => $info->street,
'extendedAddress' => '',
'locality' => $info->city,
'region' => $info->county,
'postalCode' => $info->postCode,
'countryCodeAlpha2' => $info->country,
),
);
$result = $gateway->transaction()->sale($transaction);
您必须联系 BrainTree 才能添加此功能,因为没有可以为货币传递的参数或帐户相关设置。
联系信息 --> accounts@braintreepayments.com 并向他们提供您的 PayPal 电子邮件地址。
我正在编写一个使用 PayPays Express Checkout 和 v.zero API 的系统。我遇到的问题是它只接受美元付款,但我需要接受美元、英镑、澳元和欧元。我正在按如下方式处理交易:
$transaction = array(
'amount' => $order->cost_total,
'paymentMethodNonce' => $info->nonce,
'orderId' => $orderId,
'descriptor' => array(
'name' => '-removed-',
),
'shipping' => array(
'firstName' => $info->firstName,
'lastName' => $info->lastName,
'company' => '',
'streetAddress' => $info->street,
'extendedAddress' => '',
'locality' => $info->city,
'region' => $info->county,
'postalCode' => $info->postCode,
'countryCodeAlpha2' => $info->country,
),
);
$result = $gateway->transaction()->sale($transaction);
您必须联系 BrainTree 才能添加此功能,因为没有可以为货币传递的参数或帐户相关设置。
联系信息 --> accounts@braintreepayments.com 并向他们提供您的 PayPal 电子邮件地址。