Open metade opened 9 years ago
Yea it would be a billing integration like Skrill so Spree::BillingIntegration::MollieIdeal
. It would be best to have another extension wrapping offsite_payments, but I wonder how simple it could be done directly here as well if you want to try.
:+1:
just saw some work here https://github.com/dapic/spree_offsite_payments
@metade Any progress on this ? I'm integrating Mollie as a gateway at the moment, it's almost finished but I'm running into some issues, for example I don't need the confirmation step after the payment paid. (iDeal has an instant callback)
@LaurensN I'm afraid not. We ended up porting to Solidus and using Adyen instead of Mollie.
We've been working with Stembolt on a gem for this: https://github.com/StemboltHQ/solidus-adyen
We're looking to integrate with Mollie, a payment provider in the Netherlands.
There is support for Mollie in the ActiveMerchant
offsite_payments
gem, so it would make sense to reuse that rather than starting from scratch. I hadn't come across this before - it seems that ActiveMerchant has extracted all of the off site payment integrations into a separate gem rather than have them mixed in with the mainactivemerchant
gem.But how should we approach integrating this with Spree?
Spree::Gateway::MollieIdeal
) in this gem that wraps theOffsitePayments::Integrations::MollieIdeal
like any other gateway?Spree::BillingIntegration::MollieIdeal
)?offsite_payments
integrations?