将送货地址发送到 Authorize.net

发布于 2024-09-19 13:03:44 字数 427 浏览 0 评论 0原文

我已在我的网站中实施了 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 发送数据。

有谁知道如何发送运输信息吗?

提前致谢

I have implemented the Authorize.net payment method in my web site. I have sent the billing info and payment into to the autorize.net. But I want to send the shipping information too. I am using the following code

"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,

Using curl to send the data.

Does any one know how to send the shipping info?

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

热风软妹 2024-09-26 13:03:45

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/

It's clearly documented in Authorize.net's online docs.

Direct link to the shipping info data: http://developer.authorize.net/guides/AIM/Transaction_Data_Requirements/Shipping_Information.htm

Basically:

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

And overall documentation: http://developer.authorize.net/guides/AIM/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文