我已经在我的网站上实施了Authorize.net付款方式。我已将结算信息和付款发送到autorize.net。但我也想发送运费信息。我使用以下代码
"x_first_name" => $firstname,
"x_last_name" => $lastname,
"x_address" => $bill_address,
"x_city" => $bill_city,
"x_state" => $bill_state,
"x_zip" => $bill_zip,
"x_country" => $bill_country,
"x_phone" => $phone,
使用curl发送数据。
有人知道如何发送送货信息吗?
提前致谢
答案 0 :(得分:0)
在Authorize.net的在线文档中清楚地记录了它。
直接链接到送货信息数据:http://developer.authorize.net/guides/AIM/Transaction_Data_Requirements/Shipping_Information.htm
基本上:
x_ship_to_first_name
x_ship_to_last_name
x_ship_to_company
x_ship_to_address
x_ship_to_city
x_ship_to_state
x_ship_to_zip
x_ship_to_country