gpt4 book ai didi

Paypal - 使用 checkout.js 定期付款

转载 作者:太空宇宙 更新时间:2023-11-03 16:05:20 25 4
gpt4 key购买 nike

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

如果是这样,您能否提供一个工作示例?

最佳答案

是的,这是可能的。我刚刚为此创建了一个 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

下面的例子结帐https://github.com/chibeepatag/paypal_poc

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

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com