cordova-plugin-applepay icon indicating copy to clipboard operation
cordova-plugin-applepay copied to clipboard

A complete Cordova plugin that adds Apple Pay support.

Results 18 cordova-plugin-applepay issues
Sort by recently updated
recently updated
newest added

Hi there, Using the applepay sandbox in a simple Cordova 6.5 demo app (IOS 11, plugin v3.0.0), the app successfully verifies that the device can make payments and has a...

So, I updated the code as follows: (https://github.com/d34thkn3ll/cordova-plugin-applepay/blob/4ebf5ea0547e660a4f298e15fb546631a6905ef8/src/ios/CDVApplePay.m#L149) ``` NSString *itemType = [item objectForKey:@"type"]; PKPaymentSummaryItemType type; if ([itemType isEqualToString:@"pending"]) { type = PKPaymentSummaryItemTypePending; } else { type = PKPaymentSummaryItemTypeFinal; }...

Hey there, I'm getting an issue when calling makePaymentRequest since the latest iOS update to 13.3. canMakePayments works fine, but when I call the makePaymentRequest function, the app crashes. Was...

How do I create a charge with Stripe with PaymentData? It throws an error that the string is invalid and too long. I decoded paymentdata but don't know how to...

Hi i think in: `MyPaymentProvider.authorizeApplePayToken(token.paymentData)` I have to connect to stripe but i don't see any request in the doc Could you guide me a bit? Thanks

does this work with ios 14? Can this plugin work with an app on Capacitor 2 and vue.js (not angular)? If not, can it be improved or what can you...

I've been able to use this plugin to get apple pay to generate a token, but I'm not sure how to use that with stripe. At the beginning of this...

> 2021-01-27 14:09:14.772749+1300 [47437:1094357] ApplePay canMakePayments == true 2021-01-27 14:09:14.776377+1300 [47437:1094357] ApplePay request == 2021-01-27 14:09:14.784550+1300 [47437:1094357] THREAD WARNING: ['ApplePay'] took '19.363037' ms. Plugin should use a background thread. 2021-01-27...

I'm trying to implement the Apple Pay with ionic, Everything works fine. Apple Pay drop in sheet comes with payment info. On makePaymentRequest method I do get the Base64 token,...

If I do a local push from Xcode all function calls work as expected, but as soon as I push the same build of the app through TestFlight or through...