I have setup stripe for card & apple pay payments, but now i need to setup apple so that clients will confirm the payment but not get charged instantly and i will charge them in future.
At the moment i am doing the following actions:
request.canMakePayment functionrequest.on("paymentmethod")paymentmethod function resolvespaymentmethod i do stripe.confirmCardPayment with setup_future_usage: "off_session"With these steps the payment goes through but the user is charged instantly. How can i prevent this from happening ? I've red the documentation but i can't seem to get the hang of the scenario that i need.