#Emily
1 messages · Page 1 of 1 (latest)
Hi, can you share the request id where you're seeing this? Here's how you can find a request ID: https://support.stripe.com/questions/finding-the-id-for-an-api-request.
req_alBEzAVE84uxB4
👋
Looks like you are on 0.6.1 correct?
And you are presenting Apple Pay directly? Not using Payment Sheet, right?
Is there a cartSummaryItem prop on ApplePay on 0.6.1?
Ah actually would be a param on presentApplePay I think
I'm using a setupIntent, so not presentApplePay
But I can update to using presentApplePay if that's the only way
What method are you using in the RN SDK?
I have a hard time remembering what was used in 0.6.1 as that is a pretty old version at this point
Would updating to a newer version potentially fix it?
Using:
const setupIntent = await stripe.setupIntents.create({ customer: customer_id, });
Yeah you would use platformPayButton with the newest version of our React Native SDK
And you can set Apple Pay specific params (https://stripe.dev/stripe-react-native/api-reference/modules/PlatformPay.html#ApplePayBaseParams) which allow you to pass carItems where you can set isPending: false (see: https://stripe.dev/stripe-react-native/api-reference/modules/PlatformPay.html#ImmediateCartSummaryItem)
I'd recommend taking a look at https://stripe.com/docs/apple-pay?platform=react-native#accept
That walks through the implementation here of PlatformPayButton
The example there will use a PaymentIntent but you can just replace that with a SetupIntent
What are you using currently with the Stripe React Native SDK to present the Apple Pay modal?
In version 0.6.1?
@tired path let us know if you're still blocked.