想要使用 braintree 付款发送订购商品的详细信息
Want to send details of ordered items with braintree payment
我正在尝试找到一种方法来添加付款中订购的产品的详细信息,以便购买的商品显示在 braintree 仪表板上的订单中。
我一定是遗漏了一些非常明显的东西,我猜一定有一个 'product' 或 'order' 数组与交易数组一起发送,但找不到任何提示那。
干杯
更新//
<?php
$result = Braintree_Transaction::sale([
'amount' => '100.00',
'paymentMethodNonce' => nonceFromTheClient,
'customFields' => [
'custom_field_one' => 'custom value',
'custom_field_two' => 'another custom value'
]
]);
?>
我可以使用'customFields'参数来处理订单详情,但仍然想知道是否有人知道预设数组?
完全披露:我在 Braintree 工作。
没有用于存储有关在特定交易中购买了哪些产品的详细信息的预设数组。要从 Braintree 控制面板访问此信息,您必须使用 customFields。
我正在尝试找到一种方法来添加付款中订购的产品的详细信息,以便购买的商品显示在 braintree 仪表板上的订单中。
我一定是遗漏了一些非常明显的东西,我猜一定有一个 'product' 或 'order' 数组与交易数组一起发送,但找不到任何提示那。
干杯
更新//
<?php
$result = Braintree_Transaction::sale([
'amount' => '100.00',
'paymentMethodNonce' => nonceFromTheClient,
'customFields' => [
'custom_field_one' => 'custom value',
'custom_field_two' => 'another custom value'
]
]);
?>
我可以使用'customFields'参数来处理订单详情,但仍然想知道是否有人知道预设数组?
完全披露:我在 Braintree 工作。
没有用于存储有关在特定交易中购买了哪些产品的详细信息的预设数组。要从 Braintree 控制面板访问此信息,您必须使用 customFields。