我有一个网站,用户通过分期付款(定期付款)付款。由于我不想将用户的信用卡/帐户信息存储在我的数据库中,因此我使用 PCI合规性我使用了 AUTHORIZE .NET Cim
我跟着这个library,第一次一切正常,即
- createCustomerProfile
- createCustomerPaymentProfile
- createCustomerProfileTransaction
醇>
第一次交易有效,我收到了所有回复:
var network = new ActiveXObject('WScript.Network');
// Show a pop up if it works
alert(network.computerName);
但如何使用responsecode, transactionid, authid.
或customer id
我甚至设置了:customer payment id.
以下是完整的代码:
$cim->setParameter('recurringBilling',true);
答案 0 :(得分:0)
您无法通过CIM制作或管理订阅,因为它只是创建和管理付款帐户的一种方式。定期结算标记仅表示您创建的此付款帐户将用于定期结算。它实际上并没有设置订阅。
因此,如果您想将其用作定期结算系统,则需要编写自己的定期结算引擎,以实际安排和处理付款。