是否可以使用checkout.js触发定期付款(订阅/计费协议)?

如果是这样,您能提供一个可行的例子吗?

最佳答案

是的,它有可能。我刚刚为此创建了一个POC。


创建一个BillingPlan并激活它

plan = Plan.new(PlanAttributes)
plan.create
patch = Patch.new
patch.op = "replace"
patch.path = "/";
patch.value = { :state => "ACTIVE" }
plan.update( patch )

在paypal.Button的付款功能中。调用服务器以创建BillingAgreement。然后,用户将授权付款。

agreement = Agreement.new(agreement_attributes)
agreement.plan =  Plan.new( :id => "<the_plan_id>" )
agreement.create

在paypal.Button的onAuthorize函数内部。调用服务器以执行BillingAgreement

agreement.execute



遵循中的示例
结帐https://github.com/chibeepatag/paypal_poc

关于paypal - Paypal-使用checkout.js进行定期付款,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48130670/

10-12 05:14