#tarantino_47

1 messages · Page 1 of 1 (latest)

main solsticeBOT
native stag
#

I'd like to know if it;s even possible what I'm trying to achieve

green oasis
#

Hi
Why you want to create the PaymentMethod ?

native stag
#

I need to retrieve billing address from apple pay payment method and then associate it with the PaymentIntent

#

you know how PaymentRequestButton works?
it has paymentRequest.on('paymentmethod', onPaymentMethod);
where
const onPaymentMethod = async ({ complete, paymentMethod }: any) => {}
So I'm able to know paymentMethod and associated billing address

#

I wonder if there is any similar functionality in react native PlatformPayButton

green oasis
#

you know how PaymentRequestButton works?
Payment Request Button is a web only feature

native stag
#

ok, is it possible to update PaymentIntent from the client? I guess it's only possible from the BE?

green oasis
#

Yes you need to make an update on the PaymentIntent from your backend

native stag
#

ok, thank you!

main solsticeBOT