Open waaux opened 5 years ago
In this line should be: super(payment_method, options) instead of super(payment, options) ???
hi @waaux yes, it's definitely as you suggest, we fixed it as well like that in our app.
OT: we are also trying to use the new Stripe's Payment Intents
Gateway API with Stripe's Element
and spree_gateway
; how do you handle 3DS redirects? we think to keep the "old" suggested flow with form submission, then implement the required webhooks and handling all redirects for 3DS from the backend, passing the webhook's return_url
Hi @davideghz As you suggested I will use the old flow with flow submission and follow this Stripe tutorial to handle 3DS. Link: https://stripe.com/docs/payments/3d-secure-iframe
How did you fix this problem from your app? Did you use _decorator file???
How did you fix this problem from your app? Did you use _decorator file???
we "vendorized" the gem and fixed it directly, waiting for your PR to be merged :)
we are still having hard time in handling 3ds redirects tho
I am getting this message undefined local variable or method `payment' when I am trying to store the customer credit card information using the new Stripe Payment Intents Gateway.
I am doing this: response = provider.store(creditcard, options)
where creditcard is the credit card information from the user.