Tipsi-stripe: Apple Pay not Completed

Created on 1 Oct 2019  路  13Comments  路  Source: tipsi/tipsi-stripe

Using @^8.0.0-beta.7, I get the following error message when trying to complete Apple Pay payment. I have setup Apple Merchant ID and followed all the instructions. This fails on both real device and simulator.

"Apple Pay not Completed"

I have attached an image of the error message.

Screen Shot 2019-10-01 at 11 36 51 AM

wont-fix

Most helpful comment

Hello EveryOne, please try this to add in your code this function will help you to complete the payment..
i was able to resolved mu issue..

stripe.completeNativePayRequest();

All 13 comments

(1) Try beta.8
(2) Double check that you've set everything up correctly as described. We are running this build in production with no problems.

Its better to check on real device

@bramski is it working ok on iOS 13 for you? I'm having "Cancelled by user" error all of a sudden. And I'm seeing errors on production on versions after 12.1.
Testing on beta.8 right now.

Yes but it never works in simulator.

@andyesp Did you find the solution to your problem ? I am having the same error

Edit: iOS 13 simulator has a problem with apple pay showing, it still works for real devices.

https://stackoverflow.com/questions/57891144/applepay-error-connection-to-remote-alert-view-service-failed-on-ios-13

For me even on real device I still can't make it work.

Hi guys, on a real device using stripe test keys I get "payment not completed"

The device is running iOS 13

Having the same issue on the simulator even though my success callback with the stripe token gets fired. Need to get an adapter for our iphone to test but will report back in a day or two.

Tested on a real device and have the same issue of "payment could not be processed". Stripe has my certificate and the shape of my params matches the validation type check. Will step through the stripe module and report back

For me even on real device I still can't make it work.

did you fix this problem?

Hello EveryOne, please try this to add in your code this function will help you to complete the payment..
i was able to resolved mu issue..

stripe.completeNativePayRequest();

@Haseeb005

This is what I have so far. Where would you add it?

It looks like it throws the error before the promise is resolved

const stripeToken = await stripe.paymentRequestWithNativePay({ total_price: '100.00', currency_code: 'USD', shippingMethods: [{ id: 'fedex', label: 'FedEX', detail: 'Test @ 10', amount: '10.00', }], }, [{ label: 'Whisky', amount: '50.00', }, { label: 'Vine', amount: '50.00', }])

Was this page helpful?
0 / 5 - 0 ratings