Braintree(支付网关)和PHP是否可以同时为所有用户进行销售交易。 就像我想在订阅最少数量的用户时进行销售交易。
以下是我要使用的内容:
// Make a sale transaction for all the users at once.
for ($x = 0; $x <= count($users); $x++) {
$result = \Braintree\Transaction::sale(array(
'amount' => Session::get('price'),
'paymentMethodNonce' => $request->payment_method_nonce,
'customer' => [
'id' => $user->id,
],
'options' => [
'submitForSettlement' => True,
]
));
}
答案 0 :(得分:0)
Nonces仅限一次性使用,因此唯一可行的方法是使用付款方式令牌,您必须从每个客户的结果对象返回。