I'm running this in test mode at the moment and when you enter the Stripe test card details to complete a purchase, it processes the payment and then attempts to jump you to whatever page is specified in the action in the form:
<form action="/your-server-side-code" method="POST">
So, I need to basically direct it to a page on the site that will save an authorisation key, they are called "tokens" I believe but I've no idea how Stripe posts them back to whatever page it is that we choose to redirect people to.
I'm not clear what order I should have this in now, in particular the Save Order to Database and Order Details to Database behaviours which we will need in order to store the order details for customer to be able to review. This will need adjusted to include a field for the token sent by Stripe, right?
Would appreciate any advice you could offer. Thank you.
NJ