如何使用现有的 customerId 处理 Braintree 付款

How to Process Braintree Payment with existing customerId

正在尝试使用 Braintree 设置 iOS 和 PHP 支付系统。

我可以用

设置一个 clientToken
$clientToken["client_token"] = Braintree_ClientToken::generate());
return ($clientToken);

我可以通过以下方式处理第一笔付款:

$result = Braintree_Transaction::sale(array(
        'amount' => '1',
        'paymentMethodNonce' => $nonce,
        'customer' => array(
            'id' => 'testId',
            'firstName' => 'John',
            'lastName' => 'Doe',
            'email' => 'john@doe.com',
        ),
        'options' => array(
            'submitForSettlement' => true,
            'storeInVaultOnSuccess' => true,
        )
      ));

然而,当我尝试处理第二笔付款时出现错误:

91609 – Customer ID has already been taken.

如何使用相同的客户 ID ('testId') 处理同一客户的第二次付款 - 为什么当我尝试使用现有客户 ID 进行付款时会抛出错误?当然它应该只是将付款附加到同一客户吗?这不是它的用途吗?

编辑: 因此,在仔细查看之后,我发现了另一个可以包含在 Braintree_Transaction::sale 中的字段,如下所示:

'customerId' => 'testId',

所以这将允许我重新使用存储在 Braintree 保险库中的 customerId。但是对于第一次交易我得到错误:

91510 – Customer ID is invalid.

所以我陷入了陷阱 22 - 我可以将第一组代码用于新客户但不能用于回头客,我可以将第二组代码用于回头客但不能用于新客户。我不能同时使用两者。所以我的解决方案是创建我自己的本地数据库条目,确定用户之前是否通过 braintree 付款并相应地替换代码。有没有更精简的方法?

我在布伦特里工作。如果您需要更多帮助,可以随时 reach out to our support team.

你的想法是正确的。您需要跟踪 Braintree 是否存在客户 ID。

有一个替代方案,但我不推荐它,因为它需要额外的 API 调用。

您可以先尝试create the customer with Braintree,如果错误代码为91510:

,则忽略错误
$result = Braintree_Customer::create(array(
        'id' => 'testId',
        'firstName' => 'John',
        'lastName' => 'Doe',
        'email' => 'john@doe.com',
));

然后,您知道该客户要么已经存在,要么是您刚刚创建的,您可以使用第二种方法 create a transaction

还有其他选择,您可以使用 find('a_customer_id') 查看 Braintree 是否已有用户 ID,而不是查看您的数据库。然后选择第一种方法或第二种方法。