#minio-checkout-redirect
1 messages · Page 1 of 1 (latest)
@limpid acorn no that's not possible, the redirect happens after success and you can't really control this
minio-checkout-redirect
so in this case, the good practice will be after success_url redirection I will ask backend if payment is done correctly? are there any good practices available to check? Scenario: I have button on my web app 'upgrade to premium' -> doing payment -> redirect to web app let's say with url query success=true -> right now I'm not 100% sure if payment is done from web app point of view - sob the button 'upgrade to premium will be still visible' and I don't want to play with logic regarding to query because every user can write it by hand. Looking for good practices 🙂
1/ Customer is on your website
2/ Customer goes to Checkout
3/ Customer is redirected back to your success_url
4/ Your code knows who that Customer is and can do the fulfillment by checking the Checkout Session status and all relevant details
ok cool, we can close. Thanks!