Questions tagged [applepay]

A payment method created by apple to pay for goods online or offline.

Apple Pay was made available in iOS 8. It uses Touch ID for security as well as track shipping and payment information all in one place.

More Information:

743 questions
29
votes
3 answers

Integrating Apple Pay JS Into A Website

I'm looking into integrating Apple Pay into a website using the new Apple Pay JS SDK. The documentation is currently pretty minimal, concerning just the API declarations and how to instantiate a new ApplePaySession object. Is there any example code…
Martin Costello
  • 9,672
  • 5
  • 60
  • 72
20
votes
0 answers

ApplePay error `Connection to remote alert view service failed` on iOS 13

I have a fully working implementation of ApplePay. all works well on iOS10, 11 and 12. Since the first beta of iOS 13 and Xcode 11 and up until now (iOS13GM and Xcode 11GM) the ApplePay authorization modal doesn't show up. My PKPaymentRequest should…
Tal Cohen
  • 1,308
  • 10
  • 20
19
votes
4 answers

How do you show an UIAlertView above the Apple Pay PKPaymentAuthorizationViewController?

Using the standard UIAlertView code below will show the alert underneath the Apple Pay PKPaymentAuthorizationViewController sheet. [[[UIAlertView alloc] initWithTitle:@"Payment Error" message:[error…
CTL
  • 227
  • 3
  • 7
17
votes
2 answers

How do you test Apple Pay in Safari?

I am setting up Apple Pay on the web with Stripe and want to use the Sanbox Tester account we setup in iTunes Connect to test on both iOS and macOS in Safari. On the test device (2017 iPad) I have logged in to iCloud with the Sandbox Tester account…
LeonardChallis
  • 7,759
  • 6
  • 45
  • 76
15
votes
3 answers

How to create PKPaymentButton in IB?

The following code is from WWDC 2015 Session 702 Apple Pay Within Apps - Emporium: A Simple Shopping Experience with Apple Pay if PKPaymentAuthorizationViewController.canMakePaymentsUsingNetworks(ProductTableViewController.supportedNetworks) { …
koira
  • 1,197
  • 8
  • 10
15
votes
2 answers

How to verify ios device supports Apple Pay

I'm starting an Apple Pay integration project and have been able to wire up a transaction on the device, and use Stripe to authorize the payment. The part I'm actually struggling with is the proper way for the device to test whether Apple Pay is…
Miro
  • 5,307
  • 2
  • 39
  • 64
14
votes
2 answers

Apple Pay - authorize.net returns error 153 only when live, sandbox works

After searching a lot of articles i couldn't find a solution for my problem. I have integrated ApplePay button on my site and successfuly made transactions in sandbox mode. I'm using authorize.net php SDK to generate the request. The problems…
bksi
  • 1,606
  • 1
  • 23
  • 45
13
votes
4 answers

Implementing Apple Pay with SwiftUI

This is my first time working with PassKit and with SwiftUI on a big project. I'm trying to implement Apple Pay SwiftUI and since there isn't a native way to do so yet, I tried wrapped the PKPaymentAuthorizationViewController in…
user2805119
  • 223
  • 3
  • 6
13
votes
4 answers

Can we test Apple pay in simulator

I know that Apple pay testing we use Apple pay stubs in iOS 8, but please let me know how to use Apple pay without ApplePayStubs in iOS 9 in simulator. Thanks in advance
Gopal Devra
  • 564
  • 2
  • 5
  • 24
11
votes
4 answers

convert iso 4217 numeric currency code to currency name

I have a an ISO 4217 numeric currency code: 840 I want to get the currency name: USD I am trying to do this: Currency curr1 = Currency.getInstance("840"); But I keep getting java.lang.IllegalArgumentException how to fix? any ideas?
Asaf Maoz
  • 675
  • 3
  • 6
  • 23
10
votes
1 answer

Apple Wallet NFC encryptionPublicKey

In Apple's documentation for the keys available for a Wallet pass, there's an option for a dictionary for NFC-related data. I understand that use of this key requires special permission from Apple. Regardless ... message is straight forward --…
Dan
  • 4,197
  • 6
  • 34
  • 52
10
votes
2 answers

How to add a credit/debit card into apple wallet from the ios App

I would be really helpful if anyone provides a solution to know, how do we add the credit/debit card details to Wallet from our App. I have the credit/debit card details for the user and when user tap on Apple Pay option in my App, the Add Card…
Prasanth Raj
  • 157
  • 1
  • 2
  • 8
10
votes
1 answer

Apple Pay will not display prefilled information

While trying to setup Apple Pay in an iOS app we've run into an issue with the API and pre-filling information. Our user flow allows the user to manually set their address, email and phone prior to paying with Apple Pay, so we want to be sure to…
Nathan Taylor
  • 24,423
  • 19
  • 99
  • 156
9
votes
1 answer

Apple Pay Payment certificate is not trusted

I am working on implementing Apple Pay in my ios app, For that I tried to create certificates on the apple account. I followed this setting_up_apple_pay_requirements link. and followed the exectly these three steps 1.) Create a merchant…
Parv Bhasker
  • 1,773
  • 1
  • 20
  • 39
9
votes
6 answers

IOS receipt validation error 21002

I'm trying to use receipt validation with my server side. Everything is ok, but sometimes I see strange: 10 times validation is OK, but on 11 i get 21002 error. I dont know what to do. Sometimes I get error 21002 when I validate receipt first time…
John Snow
  • 129
  • 1
  • 3
  • 7
1
2 3
49 50