所以我有简单的基于java的服务器后端。我想创建一个空客户并使用在我的应用程序中生成的 id,而不是 Braintree 分配的 id。我尝试使用这种方法:
String testId = "12345678";
log.info("Create customer with id: " + testId);
CustomerRequest customerRequest = new CustomerRequest()
.customerId(testId)
.firstName("Martin")
.lastName("Mojko");
braintreeGateway.customer().create(customerRequest);
然而,settercustomerId被忽略,并且 Braintree 为该客户分配了不同的 id。有什么办法可以使用自己的id吗?
jeck猫
梦里花落0921
相关分类