#aferdita-applepay-authorization
1 messages ยท Page 1 of 1 (latest)
Hi there ๐ please bear with me while I confirm that.
Thank you for your patience, yes you should be able to do this. Apple Pay and Google Pay are both types of card payments, and I just confirmed that I was able to use a manual capture with GPay.
Thanks for your response! I've surfed stripe docs and I couldn't find a way to implement it. It seemed to me like the completion of the payment would take place in Front End.
Can you list the API calls I would need to use?
(Edited the above message )The completion of the payment: https://stripe.com/docs/stripe-js/elements/payment-request-button#html-js-complete-payment
How are you collecting the google pay card details? PaymentRequest button? Payment Element? Card Element?
We haven't decided on that yet, because we weren't sure if it was doable.
But for Cards we're using SetupIntent
What would be the recommended way?
Should be doable with any. Placing a hold is a PaymentIntent https://stripe.com/docs/payments/capture-later
so our current setup would kind of just work? We just need to collect the google/apple pay details and then stripeClient.paymentIntents.create, and stripeClient.paymentIntents.capture would work
Yes, you would be creating a PaymentMethod and could use like any other card PaymentMethod it sounds like
I am unsure on Applepay as toby only confirmed this on GPay but it will work the same if it has that functionality
@narrow delta yes wallets work with SetupIntents
Can you point me to some documentation on how to store GPay/APay with SetupIntents?
you just use them the same way you use Apple/Google Pay with PaymentIntents
instead of a PaymentIntent you create a SetupIntent
I haven't used them previously ๐ are there any docs on that?