Any idea how to get the Stripe Payment Infos and store it to DB?

I’m now doing the stripe integration in my project. As I can’t wait for any extensions or SERVER SIDE API, I’ll just code it at my own.

So i guess the process is pretty much simple:

  1. Payment button in Wappler (Form action with Infos, amount etc. will be passed )

  2. Stripe Payment Gateway

  3. Getting back Request/Response and store it via Wappler into DB

     <form action="your-server-side-code" method="POST">
       <script
         src="https://checkout.stripe.com/checkout.js" class="stripe-button"
         data-key="pk_test_TYooMQauvdEDq54NiTphI7jx"
         data-amount="999"
         data-name="Stripe.com"
         data-description="Example charge"
         data-image="https://stripe.com/img/documentation/checkout/marketplace.png"
         data-locale="auto"
         data-zip-code="true">
       </script>
     </form>
    

Here the full docu:

Community Page
Last updated: