4

环境:
Ruby 1.9.2
Rails 3.2.8
gem 'ActiveMerchant' 1.34.1

我想使用 Paypal 定期付款选项进行自动续订选项。

为此,我正在使用 Paypal 付款选项,该选项转到 paypal 网站,允许用户登录并确认付款,然后进行处理。

它适用于正常付款(不是定期付款)。对于正常付款,我使用:

在班上:

ActiveMerchant::Billing::Base.mode = :test

@@paypal_express_gateway = ActiveMerchant::Billing::PaypalExpressGateway.new(
    :login => 'my_login_id@domail.com',
    :password => 'password',
    :signature => 'Signature'
)

express_checkout方法:

setup_response = @@paypal_express_gateway.setup_purchase(@@amount,
      :ip                => request.remote_ip,
      :return_url        => url_for(:action => 'confirm', :only_path => false),
      :cancel_return_url => url_for(:action => 'new', :only_path => false)
)
redirect_to @@paypal_express_gateway.redirect_url_for(setup_response.token)

confirm方法:

details_response = @@paypal_express_gateway.details_for(params[:token])

然后details_response返回成功方法truefalse。我将它发送到完成或错误页面。那就是我想要的定期付款


对于使用 PaypalExpressCheckout 进行定期付款,我使用了以下内容:

在班上:

ActiveMerchant::Billing::Base.mode = :test

@@paypal_express_gateway = ActiveMerchant::Billing::PaypalExpressGateway.new(
    :login => 'my_login_id@domail.com',
    :password => 'password',
    :signature => 'Signature'
)

express_checkout方法:

setup_response = @@paypal_express_gateway.setup_purchase(@@amount, <br>
    :ip                => request.remote_ip, <br>
    :return_url        => url_for(:action => 'confirm', :only_path => false),
    :cancel_return_url => url_for(:action => 'new', :only_path => false)
)
redirect_to @@paypal_express_gateway.redirect_url_for(setup_response.token)

confirm方法:

details_response = @@paypal_express_gateway.recurring(@@amount, "", options = {
    :token => params[:token],
    :period => "Month",
    :frequency => 3,
    :start_date => Time.now,
    :description => "Checking recurring auto-renewal"
})

现在我收到错误undefined method "add_credit_card" for #<ActiveMerchant::Billing::PaypalExpressGateway:0x00000006c831a0>

循环方法在此处定义(活动商家),它将返回profile_id

因此,我想使用 PaypalExpressGateway(不是 PaypalGateway)进行定期付款,因为付款是在 Paypal 网站上完成的,因此开发人员无法将信用卡详细信息发送到定期付款方式。

那么为什么在PaypalExpressGateway 的情况下使用credit_card参数。并且方法调用的方法“ build_create_profile_request(options)recurring不应检查 credit_card,因为我没有在选项中传递任何参数“credit_card”。(参见给定链接中的第 127 行)

请检查代码,让我知道我错在哪里。如果有人可以为我提供准备好的代码,那么它将更加有用。

我尝试了许多博客和解决方案,但没有成功。请尽快给我解决方案。

4

1 回答 1

3

我使用 ActiveMerchant 进行定期 PayPal 付款。您需要将nil而不是空字符串作为第二个参数(这是表示信用卡对象的某种对象,但我不认为是为 ActiveMerchant 的 PayPal Express Checkout 集成实现的)传递给该recurring方法。

details_response = @@paypal_express_gateway.recurring(@@amount, nil, { 
  :token => params[:token], 
  :period => "Month", 
  :frequency => 3, 
  :start_date => Time.now, 
  :description => "Checking recurring auto-renewal" 
}) 
于 2013-07-22T14:41:21.243 回答