Paypal - checkout.js的定期付款

时间:2018-01-06 18:46:55

标签: paypal checkout billing

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

如果是这样,你能提供一个有效的例子吗?

1 个答案:

答案 0 :(得分:0)

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

  1. 创建BillingPlan并将其激活

    plan = Plan.new(PlanAttributes)
    plan.create 
    patch = Patch.new
    patch.op = "replace"
    patch.path = "/";
    patch.value = { :state => "ACTIVE" }
    plan.update( patch )
    
  2. 在paypal.Button的支付功能内部调用您的服务器创建BillingAgreement。然后,用户将授权付款。

    agreement = Agreement.new(agreement_attributes)
    agreement.plan =  Plan.new( :id => "<the_plan_id>" )
    agreement.create
    
  3. 在paypal.Button的onAuthorize函数内调用您的服务器执行BillingAgreement

    agreement.execute
    
  4. 按照示例中的说明 结帐https://github.com/chibeepatag/paypal_poc