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

NFC emulation in Phones

I am looking for a way to unlock door lock using NFC from phone as shown in these videos: https://www.youtube.com/watch?v=ISxnUqb5_8Y&t=65s https://www.youtube.com/watch?v=_IIDq5IS6I0 https://www.youtube.com/watch?v=7jq_pOwf9bo Initially I tried…
Calvin
  • 617
  • 1
  • 12
  • 34
0
votes
0 answers

Chrome is not rendering/previewing Apple pass whereas Safari previewing the pass when I click the download link

I created Apple passes file and uploaded to my web server. I have Pkpass files under my web server folders. I am hosting them under IIS. I have added "application/vnd.apple.pkpass" MIME type on IIS. I am hosting it under a subdomain (not an IP…
Fatih
  • 21
  • 6
0
votes
0 answers

Add to apple wallet demo fails

I'm trying to use Apple wallet to permit users for a coupon usage so I followed apple demo Here when it comes to this part To get the signpass tool, do the following: Download this book’s companion file (from The developer downloads area), and…
sheko
  • 516
  • 4
  • 15
0
votes
0 answers

Using Apple's PassKit to replace NFC tags for gate opening

I am trying to replace an outdated solution of using hardware NFC wristband tags to open gates (buildings for example). I would like to develop an iOS app that will be able to replace these tags. I've read a lot about Apple's PassKit, and it seems…
F.SO7
  • 695
  • 1
  • 13
  • 37
0
votes
1 answer

Implementing an API service in .NET that sends background notifications to Apple Wallet

This the code we are using for sending push notification to apple for updating apple wallet pass: we are using .net api service for sending push notification to apple. var handler = new HttpClientHandler(); handler.ClientCertificateOptions =…
0
votes
0 answers

How do I get a nonce/public certs from Apple for Apple Wallet? Trying to add a card to the apple wallet

On my ios/android apps, I'm trying to add a button that says 'Add card to apple/google wallet' and I'm working with this vendor and this is their documentation for provisioning cards to ios/android apps…
anonpd762
  • 83
  • 11
0
votes
0 answers

How to Convert pkPass to JSON object

I'm using the PassJS library to generate pkpass files using the following code: const pass = await PKPass.from( { model: path.resolve( __dirname, …
Alk
  • 5,215
  • 8
  • 47
  • 116
0
votes
0 answers

Unable to create NFC-Capable PKPass for Apple Wallet

I have successfully generated a .pkpass file, but it gives following error when trying to open the file: "The pass “Sample.pkpass” could not be opened." If I open a prepackaged pkpass from here, it opens successfully. Furthermore, if I use the…
EvMc
  • 46
  • 4
0
votes
1 answer

How to check if device supports Apple wallet or not in Swift?

I want to disable adding to Apple wallet if its an iPad. So I used this: var passKitProxy: PassKitProxyProtocol! { get set } if !passKitProxy.isPassLibraryAvailable { print("Doesn't support Apple wallet") } else { print("Supports Apple…
niagara
  • 33
  • 4
0
votes
0 answers

Is it possible to create the pkpass file from the iOS app?

Is it possible to create the pkpass file from the iOS application? Yes this is what i found, but I haven't found any examples, so if anyone can help, please share any examples with me.
A.Munzer
  • 1,890
  • 1
  • 16
  • 27
0
votes
2 answers

Passbook Passes expiring after a day

Generating a passbook file using passkit4j with relevance date of today and no expiration date. However, the pass in apple wallet seems to expire after a day. Question: How can I make pass with no expiration date What is relevance date ? Tried…
another_CS_guy
  • 682
  • 6
  • 7
0
votes
0 answers

How to write presentationWindow func in PKPaymentAuthorizationControllerDelegate protocol of the PassKit

May I please ask how can I write the presentationWindow function in the PKPaymentAuthorizationControllerDelegate protocol of the PassKit? I wrote as below, it worked in iOS when the presentationWindow function is optional, so I did not write it at…
0
votes
0 answers

Apple Wallet Pass device registration does not contain push token from node express server

I'm trying to develop an updatable apple wallet pass, I've put it a webserviceURL and a authenticationToken, I'm trying to test the registration using a local server through ngrok (ngrok http portNumber), I am able to sign the pass and install the…
Jason Lee
  • 11
  • 2
0
votes
1 answer

Cannot open passkit file created in the server using dotnet-passbook v3.0.2

I have recently come across an issue that I cannot open my Pkpass which is created using dotnet-passbook version 3.2.0. The Pkpass created locally can be opened fine and the issue is with the Pkpass created in the server. I have even tried to upload…
Shahryar Faraji
  • 119
  • 1
  • 2
  • 9
0
votes
0 answers

Is there a way to create multiple generic pass in iOS for apple wallet just by using swift and not using any server?

The application I am working on has a requirement for creating pass for each worker. Is there a way to create the same on front end?