#Ivan Zhevakin
1 messages · Page 1 of 1 (latest)
There's a couple ways to collect apple pay payments. Which guide are you following?
Just want to be on the same page
Using @stripe/react-stripe-js lib and this guide
https://stripe.com/docs/stripe-js/elements/payment-request-button
So there's not a way to force it
It should just be collected already
Thanks for your help! Yep, actually tried requestPayerName option and it do collect billing address but if the billing address from apple pay account doesn't contain postal code then it just empty in stripe.
Yeah unfortunately there's just not a way to force collection of that in apple pay
It won't always be required to process a payment
Actually the problem for is not payment processing, but Stripe policy. Let me cite my manager:
"Stripe has flagged that our integration is 'sub optimal' with respect to passing Zip Codes. Citing that 17% of our CNP transactions sent don't pass the zip code resulting in higher scheme fees from VISA, MC etc. "
We checked the logs and looks like the main part of payments without zip codes come from apple pay (and google pay sometimes).
Oh ok. Well just via the Stripe API I'm not aware of a way to force collection of that via Gpay and Apple Pay. I recommend reaching out to our support team to see if they have any other options: https://support.stripe.com
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
Ok, thank you for you help! Just two last questions - is there an option maybe to collect the postal code prior the payment and update payment method or payment intent with it?
Or maybe we better use the previous version of the stripe.js which had requiredBillingContactFields option?
You could attempt doing that: https://stripe.com/docs/api/payment_intents/update#update_payment_intent-payment_method_data-billing_details-address-postal_code
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Try it out in test mode to see if it works properly for you as I haven't tested that
But I can't recommend using an older version. Not sure when it will be deprecated
Thanks a lot for your help!