Reputation: 167
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 screen in Apple Wallet need to be opened with card data pre-populated. How do we achieve the same.
Thanks in advance
Upvotes: 13
Views: 14115
Reputation: 813
There is nice demo from Apple for Wallet Extensions (adding card from your app to Apple wallet) now:
https://applepaydemo.apple.com/wallet-extensions
To request the private entitlement, as well as allow listing for the issuer app, send the following information to [email protected].
Upvotes: 0
Reputation: 31
Apple only want to communicate with bank.@pajevic
Abreast of the times email address is: [email protected]
on the https://developer.apple.com/apple-pay/ we can find in Lower right corner
Upvotes: 2
Reputation: 4657
The good news is that this can be done. What you are looking for is In-App Provisioning of Payment Cards. This is done using the PKAddPaymentPassViewController
, which requires the com.apple.developer.payment-pass-provisioning
entitlement key for your app. The bad news is that not anyone can submit apps with this entitlement as it requires special permission from Apple, which I believe is reserved for card issuers like banks and similar. If you believe that you qualify you need to contact Apple directly at [email protected]
.
Upvotes: 22