4

Regarding to the PayPal docs it's possible to skip the order confirmation page and let the customer pay on PayPal. To do so, the parameter "useraction" must be set to "commit". How can this be done with ActiveMerchants setup_purchase method?

PayPal - Customizing Express Checkout

Michael Wallasch
  • 2,499
  • 2
  • 17
  • 17

1 Answers1

8

Got it. Just set the review parameter in the redirect_url_for method to false. Example:

EXPRESS_GATEWAY.redirect_url_for(response.token, review: false)
Michael Wallasch
  • 2,499
  • 2
  • 17
  • 17