Questions tagged [passkit]

Passkit is an API aimed towards businesses and developers to help them create, distribute and manage coupons, tickets, store cards, membership cards and much more for Apple Passbook. Source: Apple 2013

For usage, check the reference: https://developer.apple.com/library/ios/documentation/UserExperience/Reference/PassKit_Framework/

230 questions
0
votes
1 answer

Apple Wallet: Device not registering to receive push notification for a pass

Recently, I've managed to create a pass with WebServiceUrl and AuthenticationToken in order to subscribe for future changes. Since I'm in active development I used http://localhost:5000/passes as a WebServiceUrl. Created pass is correctly loaded in…
Tomas Petovsky
  • 285
  • 4
  • 14
0
votes
0 answers

Cannot get completion results when Apple Pay View Controller is dismissed while the payment is processing. SwiftUI. Checkout.com

I am using swiftUI to create a coffee shop app to order from. I implemented Apple Pay payment handler object as shown in their tutorial. I am using checkout as a payment process and in the paymentAuthorizationController I send the token to checkout…
malik
  • 1
0
votes
0 answers

Thumbnail missing for Apple generic type wallet pass made with jpasskit

I'm making a generic type pass to the wallet using jpasskit on the server. Pass is created, but the thumbnail is not shown. I've tried resizing both the longest and shortest side by 90pt. The photo I have is at 3x4, so it's within the expected…
0
votes
1 answer

Apple pay sheet not showing up for Apple app reviewer

My app keeps getting rejected by the App Review team due to the fact that the Apple Pay button in my app is unresponsive on their device when they tap it. The Apple Pay sheet shows up perfectly fine on my device but never completes the payment…
dante
  • 105
  • 11
0
votes
1 answer

Apple Pay Payment not going through even though clientSecret was retrieved

The goal is to just make a successful Apple Pay payment and be done with this API integration. I'm literally on the brink of success but I have just one more bug I can't figure out. func startApplePayCheckout() { let backendUrlForIntent =…
dante
  • 105
  • 11
0
votes
0 answers

Repurpose existing UIButton as Apple Pay Button in Swift

In our checkout process, we have an existing UIButton for submitting an order. As we are starting to support Apple Pay, we want to recycle the existing button and show the Apple Pay option. Within storyboard, we have placed a UIButton and connected…
whawhat
  • 175
  • 2
  • 7
0
votes
0 answers

How to convert nonce to string?

How do i convert certificates, nonce and nonceString data to a String? When i try to convert the nonce, nonceSigntaute to string with UTF8 encoding it's failing. func addPaymentPassViewController(_ controller: PKAddPaymentPassViewController, …
0
votes
1 answer

Apple Pay - PKPassLibrary isSecureElementPassActivationAvailable

I am implementing Apple Pay as a card issuer. I am having troubles using new function in PKPassLibrary(tested on real devices) @available(iOS 13.4, *) open var isSecureElementPassActivationAvailable: Bool { get } It seems to always return false.…
iamin
  • 66
  • 4
0
votes
1 answer

Swift storing PKPass with Firebase

I'm trying to save the PKPass with Firebase so that I'm not generating the pass every time the user wants to add the pass to the waller or send the pass. I'm storing the pass.passURL in my firebase database and then fetching it again when the user…
user
  • 345
  • 2
  • 8
  • 32
0
votes
1 answer

Safari doesn't open .pkpass wallet pass

I have read all similar issues posted on PassKit and pass download issues with Safari. Tried mime to Apple pass type in header from handler lambda. My case might be a bit different. Have a create_pass lambda handler function hosted behind API…
0
votes
1 answer

Can't add pkpass to ipad, safari can't download

I've created a pkpass using jpasskit, but can't add that to ipad. It's showing that safari can't download the file. These are working perfectly fine in iPhone devices
1729i
  • 57
  • 1
  • 5
0
votes
0 answers

Apple Wallet jpasskit apple device not recognizing when setting webserviceurl

Working on a springboot application to download a pkpass file, it's working perfectly. But if I give a webserviceUrl to update the pass, it's not even recognizing in wallet. i've used jpasskit library webserviceurl : http://172.20.10.3:8080/wallet,…
1729i
  • 57
  • 1
  • 5
0
votes
0 answers

Is thumbnail image mandatory for Apple generic type wallet pass

I have been working with wallet pass as Mentioned in the apple pass creation design document https://developer.apple.com/library/archive/documentation/UserExperience/Conceptual/PassKit_PG/Creating.html#//apple_ref/doc/uid/TP40012195-CH4-SW4 If i…
Vinoth
  • 125
  • 1
  • 13
0
votes
1 answer

Share Pass not displaying as an option on some iPhone devices

I've got an iPhone 6s running 12.1.4 and SharingProhibited = false is set when generating the pass. The back of the pass shows Share Pass on my device and I'm able to click on the button to bring up the Share options dialogue. We've tested with some…
Dumber_Texan2
  • 840
  • 2
  • 12
  • 34
0
votes
0 answers

How to check if a card is default payment card in Apple Wallet?

The problem is on the Apple Wallet's APIs. There's a requirement to check if payment card issue from my application is default or not. If it's not then do something to encourage the user to make it a default one. Now, I can't seem to find such API…