Lightweight, easy to integrate and use React native library for Stripe payments (using Payment Intents) compliant with SCA (strong customer authentication)
I have been trying to implement a solution where I need to use a manual capture from stripe. I am currently generating a client secret where capture_method is set to manual.
When I run stripe.confirmPayment(clientSecret, card), I am getting the following error [Error: requires_capture]. Is there way to manually capture payments using this package?
I have been trying to implement a solution where I need to use a manual capture from stripe. I am currently generating a client secret where
capture_method
is set to manual.When I run
stripe.confirmPayment(clientSecret, card)
, I am getting the following error[Error: requires_capture]
. Is there way to manually capture payments using this package?