naoufal / react-native-payments

Accept Payments with Apple Pay and Android Pay using the Payment Request API.
https://www.npmjs.com/package/react-native-payments
1.59k stars 413 forks source link

Payment not completed issue #153

Open cubeking opened 5 years ago

cubeking commented 5 years ago

please check the code, if payment, still show that Payment not completed, why?

` const METHOD_DATA = [ { supportedMethods: ['apple-pay'], data: { merchantIdentifier: config.ApplePay.merchantID, supportedNetworks: ['visa', 'mastercard', 'amex', 'chinaunionpay'], countryCode: 'US', currencyCode: 'USD' // countryCode: 'CN', // currencyCode: 'CNY' } } ];

    const DETAILS = {
        id: 'sr-apple-pay',
        displayItems: [
            {
                label: data.description,
                amount: { currency: data.currency, value: data.price }
            },
        ],
        total: {
            label: data.description,
            amount: { currency: data.currency, value: data.price }
        }
    };`
liaokaime commented 4 years ago

I'm in the same situation as you. Have you found a solution?

lenichols commented 4 years ago

+1 same issue here

mohamed-sultan commented 4 years ago

@lenichols @liaokaime @cubeking did you found any solutions?

Sandeep155Vibhuti commented 3 years ago

Getting same issue "Apple Pay Not Completed".Please reply soon need to deploy app.Stuck Only due to this issue. Any help would be appreciated.

Zohaib-Javed commented 3 years ago

Did you try this function?

paymentResponse.complete('success');

are you facing this issue even after calling this function?

ramisalem commented 3 years ago

Any updates on this?