是否可以使用checkout.js触发定期付款(订阅/结算协议)?
如果是这样,你能提供一个有效的例子吗?
答案 0 :(得分:0)
是的,可能。我刚为此创建了一个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