Hey guys, For those of you who have implemented Stripe into your asp.net core apps (with JS frontends), please let me know if I am understanding this flow correctly. From what I get, when you integrate Stripe with a JS Frontend (Vue in my case) and an asp.net core api, the flow goes the following: user enter credit card info and clicks submit js frontend makes a request to Stripe's servers to complete payment if I get a 200 back, I'm going to make another request to my .net core api with the response token (from Stripe), error responses will display error Save the response token, along with purchase information in the api database Am I understanding this correctly?
โ07-20-2020 08:57 AM