Home > Net >  How can I confirm stripe payment on server side without using webhooks?
How can I confirm stripe payment on server side without using webhooks?

Time:04-12

How can I confirm stripe payment on server side without using webhooks? (I am using stripe paymentelement)

CodePudding user response:

PaymentElement does not support server-side payments.

You have to use CardElement and use what is referred to as "manual confirmation" to do server-side payments: https://stripe.com/docs/payments/accept-a-payment-synchronously

  • Related