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
4
votes
1 answer

Apple pay merchant id in Apple Wallet - can it be updated dynamically?

Our iOS App provides on line ordering capability to various merchants who are part of our network. We want to create unique merchant identifier and matching certificate for each merchant. My question is this: Can we update the Apple Wallet…
Curious
  • 41
  • 1
4
votes
3 answers

Error Passbook - PKZip signature

I run the code, as outlined below. When I get the file (NSData), following error appears: "BOM could not extract archive: Couldn't read PKZip signature" What is happening? Has anyone had this problem, and how can I fix it? NSString *url = [res…
3
votes
1 answer

PKAddPaymentPassViewController dismiss on cancel

Currently I'm presenting the PKAddPaymentPassViewController in my react-native application with the following code let delegate = PKAddPaymentPassDelegate(); let pkAddPaymentPassViewController =…
noctifer20
  • 188
  • 6
3
votes
1 answer

WalletPasses - Push Updates

I have integrated both Apple and Google passes into my webapp, both work, both receive push updates. But the Apple implementation (user experience) is much nicer than the Google one, and the development and implementation of passes a lot simpler…
3
votes
1 answer

Add mutliple pass in apple wallet

My app has a requirement to add multiple passes (a group of the pass) in apple wallet I have PKAddPassesViewController, and it has a method to add multiple passes but after adding in it, it shows only 1 pass. //destinationURLs are download file…
SmarterSusheel
  • 169
  • 2
  • 15
3
votes
2 answers

Check if card already added to PassKit library

I am trying to add a banking card ("payment pass") to Wallet with PKAddPaymentPassRequest. So the question is, how can I query the pass library to check if my card (or any other card) is already in the library? For example, to show "Apple Pay…
Andrey Solovyov
  • 551
  • 7
  • 21
3
votes
2 answers

Add a card to Apple Wallet

I am working on a mobile banking app and just want to add a card to Apple Wallet. Here is my code: Card *card = ...; BOOL mayAddCard = [PKAddPaymentPassViewController canAddPaymentPass]; if(mayAddCard) { PKAddPaymentPassRequestConfiguration…
Andrey Solovyov
  • 551
  • 7
  • 21
3
votes
1 answer

passkit - pass not refreshing via push notification. (Server response was malformed)

I have successfully integrated passkit but I am facing issue when updating passbook via push notification. Notification successfully received to wallet but pass not updated. Following are steps which I have implemented: Used XMPP server (PHP). used…
Parimal
  • 277
  • 2
  • 8
3
votes
1 answer

Add hyperlink to Apple Passbook front page

I tried to find solution for this across lot of resources on the internet including the Passbook documentation but I didn't have any success. I know it's possible to add hyperlink on the back of the Passbook but that's not something I can use. I'm…
IMujagic
  • 1,229
  • 10
  • 22
3
votes
0 answers

issue in Apple Passwallete integration with php

I have generated PASS with my code and also get device id, pushtoken in response from device. here is code by which I am store all device and Pass information in database. $params = array( "get"=>$_GET, …
Kruti Aparnathi
  • 175
  • 1
  • 11
3
votes
1 answer

Problems with dataStyle while creating pass for passbook

i'm creating a pass generator using PHP-PKPass. Everything is working fine until i try to add dateStyle. When I put 'auxiliaryFields' => array( array( 'key' => 'expires', 'label' => 'Expiration Date', 'dateStyle'=>…
3
votes
1 answer

NSItemProvider with type identifier "com.apple.pkpass"

I am building a share extension for iOS and would like to accept Passbook passes. I have the share extension working in that: NSItemProvider *itemProvider = inputItem.attachments.firstObject; [itemProvider…
bdjett
  • 514
  • 5
  • 9
3
votes
1 answer

PassKit unpredictable crash

We've encountered a strange crash in our apps logs : PKPaymentAuthorizationControllerExportedObject authorizationDidFinishWithError Has anyone encountered this problem, or has any helpful tip? Seems that this crash comes a while after payment It…
janh
  • 232
  • 2
  • 9
3
votes
1 answer

PassKit: Switch to Passbook and select pass

I am trying to implement a "View in Passbook" functionality in our iOS app. I have been able to use PassKit to instantiate a PKPass object for an existing pass based on its serial number, but is there any way to open up this existing pass in…
devios1
  • 36,899
  • 45
  • 162
  • 260
3
votes
1 answer

Generate pass dynamically

I created a pass statically by typing command line in order to create pass.pkpass. I also use web service in MAMP. How to generate a pass dynamically ? and where is pass.pkpass stored ?
malinchhan
  • 767
  • 2
  • 8
  • 28
1 2
3
15 16