Customizing Paypal Express's Review Page using ActiveMerchant

后端 未结 4 1409
遥遥无期
遥遥无期 2021-02-09 18:16

I am using ActiveMerchant to give my rails app access to Paypal\'s Express Checkout. I would like to include the Order Details on the Review Page as described here: https://cms.

4条回答
  •  爱一瞬间的悲伤
    2021-02-09 19:01

    Make sure you have activemerchant version not less than 1.12.0.

    EXPRESS_GATEWAY.setup_purchase(220,
      :items => [{:name => "Tickets", :quantity => 22,:description => "Tickets for 232323",                          :amount => 10}],
      :return_url => 'example.com',
      :cancel_return_url => 'example.com'
    )
    

    Hope this helps :)

提交回复
热议问题