Questions tagged [apple-wallet]
82 questions
0
votes
2 answers
iOS Apple Pay in-App provisioning extension: `viewDidLoad` method not called after invoking `init`
I am coding for Apple Pay in-App provisioning extension, but there was a problem when Apple Wallet load authorization UI extension:
shotscreen
The source code:
// The principal class .h file
#import…

user9546646
- 1
- 2
0
votes
0 answers
Add pass to Apple Wallet in React Native
I am working on integrating adding passes to Apple and Google Wallet in my React Native app. I have got the Google/Android side of things working, but iOS is proving difficult.
My backend side of things is working, and I can generate the passes…

TreyCollier
- 181
- 1
- 12
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
0 answers
Google Smart Tap + Apple Wallet - How can I determine which NFC tag is which in order to call their coinciding functions?
I am integrating both Apple and Google wallets as a ticketing app, are there any differences between the tags on each NFC chip so I can automatically determine which functions to call? Inspecting them shows that both have the same starting bytes in…

kran
- 73
- 5
0
votes
1 answer
Is there a service that creates a pass that supports the express mode of the wallet?
Thank you for reading.
I'm trying to make a system that turns on the iPhone just by holding it over a certain machine.
To do that, I need to put a pass that supports express mode into the user's iPhone wallet.
It would be ideal to have a system like…

takk_0208
- 11
0
votes
0 answers
Apple wallet add as default card screen frozen (Flutter)
I have an add to apple wallet button in my flutter mobile app to add a debit card from the app to the user's apple wallet. When you add it to the wallet it works fine, then it immediately asks you if you want to use the card as your Default Card…

Andy Lebowitz
- 21
- 2
0
votes
1 answer
How to download a pkpass file converted to base64 using HTML?
From my server, I'm reading my pkpass file and converting it to base64. I want to make this file downloadable on my template. Here's what I'm doing.
Server/Python (Django)
passfile_bytes = passfile.read()
passfile_base64 = base64.b64encode(passfile)…

darkhorse
- 8,192
- 21
- 72
- 148
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
1 answer
How to add multi-part Smart Health Cards to Apple Wallet and Health in Swift
I'm coding in Swift to add Smart Health Cards to Apple Wallet and Health using the guidelines here.
My code works fine with a single part JSON (i.e., shc:/5676290952432060346029243740... snipped for brevity). I am replacing the shc:/ prefix with…

Barb
- 124
- 7
0
votes
1 answer
Apple Wallet Web Service For Pass Update not getting valid pkpass file with AWS API Gateway + Proxy Lambda Integration
We have integrated Apple Wallet Pass webservice with API Gateway REST API + AWS Proxy Lambda Integration.
Sending response from lambda in base64 or utf-8 encoding format but pkpass file is not transforming proper valid data.
Using this npm module :…

D M Patel
- 86
- 4
0
votes
0 answers
Making PkPass storecards with balance system
I am working on making Apple Wallet cards with the intention, if a customer buys an item he gets point added to his card. My question is if I need for each customer a personal card or just one, that can be edited induvidually after the customer…

ADude
- 1
- 1
0
votes
0 answers
Passbook: line breaks in PKBarcodeFormatQR
I'm trying to build a wallet card included a VCF contact in the QR Code.
I got an issue with the line breaks, that are mandatory in VCF contact format.
I included my VCF String like this (build in PHP):
'barcodes' => [
0 => [
…

dcr31000
- 33
- 5
0
votes
0 answers
How to create event tickets for apple wallet ( for large numbers )
I am new for creating Apple wallet pass. We are organising for an event, to enter the event customer need to show their event tickets. Event ticket consists of seat number, row number , gate no and some of the essential things. I created an event…

Sinthu
- 1