According to stripe, we need to change the checkout methodology for stripe, at least in Europe.
The example they give now is. client.html <script src="https://js.stripe.com/v3"></script><button id="checkout-button">Pay</button> client.js var stripe = Stripe('pk_test_TYooMQauvdEDq54NiTphI7jx'); var checkoutButton = document.querySelector('#checkout-button'); checkoutButton.addEventListener('click', function () { stripe.redirectToCheckout({ items: [{ // Define the product and SKU in the Dashboard first, and use the SKU // ID in your client-side code. sku: 'sku_123', quantity: 1 }], successUrl: 'https://www.example.com/success', cancelUrl: 'https://www.example.com/cancel' });}); Has anyone had any experience with this they could share? Is there any docs on how I might integrate client.js into web2py. Thanks -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to web2py+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/web2py/cc760675-9c57-47bf-ac4d-d74907620b8e%40googlegroups.com.