使用ActiveMerchant预先填写Paypal setExpressCheckout中的名字和姓氏

时间:2011-05-15 13:37:05

标签: ruby-on-rails paypal activemerchant

我正在尝试使用Paypal SetExpressCheckout操作来添加用于计费的名字和姓氏。我正在使用ActiveMerchant。我看到地址字段预填充(街道,州,城市,邮政编码),但没有别的。

#### gateway ######
gateway = ActiveMerchant::Billing::PaypalExpressGateway.new(:login => 'login',:password     => 'pass',:signature => 'sig')  
### options ######
@options = Hash.new                 
@options.merge!(:ip => '127.0.0.1')
@options.merge!(:return_url => '127.0.0.1')
@options.merge!(:return_url => 'http://www.google.com')
@options.merge!(:cancel_return_url => 'http://www.google.com')
@options.merge!(:name => 'name')
@options.merge!(:description => 'description')
@options.merge!(:max_amount => 5000)
@options.merge!(:solution_type => 'Sole')
@options.merge!(:no_shipping => 1)
@options.merge!(:address_override => 1)
### build address
@address = Hash.new
@address.merge!(:name => "Joe User")
@address.merge!(:address1 => "111 ABCD EFG")
@address.merge!(:address2 => nil)           
@address.merge!(:city => "Fremont")
@address.merge!(:state => "CA")     
@address.merge!(:country => "US") 
@address.merge!(:phone => "408-111-2222")
@options.merge!(:address => @address)
setup_response = gateway.setup_purchase(5000, @options)
redirect_to gateway.redirect_url_for(setup_response.token)

在结果页面上,我没有看到预先填写的名称用于结算。 我做错了什么?

由于

1 个答案:

答案 0 :(得分:0)

我和你一样有同样的问题。经过一些研究后,我得出结论,这是ActiveMerchant中的一个错误。请查看我提交的问题。它包括我如何修补我的代码以使电话号码和名称有效的说明:

https://github.com/Shopify/active_merchant/issues/161