Closed maziarit closed 2 years ago
Please, confirm that you have implemented the following steps needed to enable Apple Pay on production:
https://developer.apple.com/documentation/passkit/apple_pay/setting_up_apple_pay
@jamesblasco
Please, confirm that you have implemented the following steps needed to enable Apple Pay on production:
https://developer.apple.com/documentation/passkit/apple_pay/setting_up_apple_pay
Same issue, i implemented that, but when run presentApplePay method, it throw exception
PlatformException(Failed, Payment not completed, null, null)
try {
await Stripe.instance.presentApplePay(
ApplePayPresentParams(
cartItems: [
ApplePayCartSummaryItem(
label: "1000P",
amount: "1000Y",
),
],
country: 'jp',
currency: 'jpy',
),
);
await Stripe.instance.confirmApplePayPayment(paymentIntent.clientSecret ?? '');
......
} catch (e) {
// Exception
}
Hi, i have the same issue, recently uploaded my app for appstore review and it got rejected, i've completed all steps for apple pay including merchant id, payment processing certificate and apple pay capability in xcode, everything works fine in test environment but for production or testflight it doesn't shows the payment sheet.
Any news on this issue?
@ymerdrengene try to add the card to Wallets app before. Check the value of :
Stripe.instance.isApplePaySupported
If you have not added card, this value will be false, and the payment sheet cannot show.
Sorry for my bad English, hope it help
Hello @hai199580 I have tried that too, but it still doesn't show the paymentsheet. @maziarit did you manage to fix this?
Three attention points for going to production:
Stripe.instance.isApplePaySupported
is true
I successfully went to production with the paymentsheet and Apple Pay with this library.
Hi, i have the same issue, recently uploaded my app for appstore review and it got rejected, i've completed all steps for apple pay including merchant id, payment processing certificate and apple pay capability in xcode, everything works fine in test environment but for production or testflight it doesn't shows the payment sheet.
@olivergibson Hi, I have the same problem, did you solve it?
@jamesblasco
Please, confirm that you have implemented the following steps needed to enable Apple Pay on production: https://developer.apple.com/documentation/passkit/apple_pay/setting_up_apple_pay
Same issue, i implemented that, but when run presentApplePay method, it throw exception
PlatformException(Failed, Payment not completed, null, null)
try { await Stripe.instance.presentApplePay( ApplePayPresentParams( cartItems: [ ApplePayCartSummaryItem( label: "1000P", amount: "1000Y", ), ], country: 'jp', currency: 'jpy', ), ); await Stripe.instance.confirmApplePayPayment(paymentIntent.clientSecret ?? ''); ...... } catch (e) { // Exception }
@hai199580 Did you find a solution ?
Describe the bug My application fully work when on debug mode on the IOS simulator but when upload the IOS app on App Store connect payment sheet not showing
My code
Smartphone