我已经在我的网站上实现了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发送数据。
有人知道如何发送发货信息吗?
提前感谢
发布于 2010-09-15 16:11:10
它在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
和整体文档:http://developer.authorize.net/guides/AIM/
https://stackoverflow.com/questions/3715365
复制相似问题