@cawex are you using the latest version (v10.2.0)?
Sep 10, 2019
4
Level 7
Laravel Cashier 3DS avoid duplication authorization
Hello, I am trying to implement 3DS with stripe, but have hit my head aginst a wall.
Whenever I try to create a new subscription it throws an IncompletePayment exception which it also shows in the docs.. It creates the subscription in the database
I then do the redirect.
catch (IncompletePayment $exception) {
return redirect()->route(
'cashier.payment',
[$exception->payment->id, 'redirect' => url('/')]
);
}
But why does the customer have to verify them self twice? once on the modal popup from stripe js, and then agian? Am i missing something?
Please or to participate in this conversation.