使用 Braintree 的服务器到服务器支付
Server to Server Payments using Braintree
我目前有兴趣使用 Braintree 从一个服务器使用我目前持有的信用卡凭证从另一个支付服务器进行支付。
目前,当客户输入他的信用卡详细信息时,Braintree Client SDK 会生成支付随机数。
但是,我想对其进行设置,以便我的服务器(已经包含我的信用卡详细信息)生成付款随机数并将其发送到另一个接受 Braintree 付款随机数的服务器。
完全披露:我在 Braintree 工作。如果您有任何其他问题,请随时联系 support.
如果您已经有了信用卡详细信息,可以先create a payment method from those. Once you have a payment method you can treat it just like you would a nonce to create transactions。
请记住,您的服务器上存在额外的 PCI concerns 原始信用卡数据。
我目前有兴趣使用 Braintree 从一个服务器使用我目前持有的信用卡凭证从另一个支付服务器进行支付。
目前,当客户输入他的信用卡详细信息时,Braintree Client SDK 会生成支付随机数。
但是,我想对其进行设置,以便我的服务器(已经包含我的信用卡详细信息)生成付款随机数并将其发送到另一个接受 Braintree 付款随机数的服务器。
完全披露:我在 Braintree 工作。如果您有任何其他问题,请随时联系 support.
如果您已经有了信用卡详细信息,可以先create a payment method from those. Once you have a payment method you can treat it just like you would a nonce to create transactions。
请记住,您的服务器上存在额外的 PCI concerns 原始信用卡数据。