#girotto_error
1 messages ¡ Page 1 of 1 (latest)
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- girotto_best-practices, 5 days ago, 8 messages
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1235287535819817011
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Which SDK are you using?
Hello! There's no time delay or anything like that. There must be a mistmatch between the certificate you uploaded to Stripe and the one you're using in your app.
the certificates that are uploaded to Stripe dashboard works for both prod and dev environments?
Yes.
do I need to do anything else besides getting the Apple Pay nonce and send to stripe like this?
final payConfig = ...; // Get apple pay config JSON
final pay = Pay({PayProvider.apple_pay: PaymentConfiguration.fromJsonString(payConfig)});
final response = await pay
.showPaymentSelector(PayProvider.apple_pay, [PaymentItem(amount: amount.toString())]);
final data = await Stripe.instance.createApplePayToken(response);
I'm not 100% sure how the Flutter integration works; we don't officially support Flutter. You may want to ask the Flutter folks for help with that side of things.
Good luck with it!