java 中的支付网关集成,可在不存储信用卡信息的情况下进行定期计费

Payment Gateway integration in java for recurring billing without storing credit card information

我需要解决的情况是,我需要在我的 J2EE Web 应用程序上集成支付网关,该应用程序支持定期计费功能,而无需在我的网站上存储信用卡信息,请告诉我解决此问题的最佳方法问题。

我已经集成了 Authorize.net 服务器集成方法来进行交易,使用它我能够成功完成交易,而无需在我的网站上存储信用卡信息,但为了将此交易转换为经常性账单订阅,我将不得不存储 我网站上的信用卡号信息不符合 PCI 合规性。所以,在这种情况下,最好的方法是什么,请告诉我。

如果您之前的交易成功,您可以使用createCustomerProfileFromTransactionRequest to create a customer profile using the previous transaction id, and then use the customer profile with ARBCreateSubscriptionRequest创建订阅。