我正在将从结帐页面填充的字段传递到PayPal。
'SHIPTOSTREET'
'SHIPTOSTREET2'
'SHIPTOCITY'
'SHIPTOSTATE'
'SHIPTOZIP'
'SHIPTOCOUNTRYCODE'
是否可以将送货地址和账单地址同时传递到PayPal。 ?
'SHIPTOSTREET' => WC()->customer->get_billing_address(),
'SHIPTOSTREET2' => WC()->customer->get_billing_address_2(),
'SHIPTOCITY' => WC()->customer->get_billing_city(),
'SHIPTOSTATE' => WC()->customer->get_billing_state(),
'SHIPTOZIP' => WC()->customer->get_billing_postcode(),
'SHIPTOCOUNTRYCODE' => WC()->customer->get_billing_country(),
答案 0 :(得分:1)
使用Express Checkout,PayPal仅可使用一个地址。这是贝宝(PayPal Checkout)对买家的好处之一...他们不必与购买其的所有其他卖家共享任何实际的账单信息。
如果您使用的是PayPal Pro或Braintree(直接抄送处理),则可以将结算和运输都发送到PayPal。显然,帐单将用于地址验证,而装运将用于装运。当然,通常建议您始终只将AVS匹配到的地址寄出,所以两者应该相同。
因此简短的回答是“否”,您不能在Express Checkout中通过帐单地址,但这不是必需的。