Offer rewards cards boarding passes tickets gift cards and more using Wallet.

Wallet Documentation

Posts under Wallet tag

106 Posts
Sort by:
Post not yet marked as solved
0 Replies
53 Views
Hello all, I am currently trying to update my Apple Pass Banner image and have made the changes. I am seeing some weird behavior where basically I download the pass and add it to Apple Wallet, and when I open Apple Wallet to see the pass, I see the new image for 1-2 seconds, and then it reverts back to the old image. I have went ahead and updated the SHA values in the pass.json as well for the new images but it still seems to be doing it. Does anyone know what might be happening here?
Posted
by
Post not yet marked as solved
0 Replies
52 Views
Hello all, I am using a Store Pass Pass Style for my IOS Wallet Pass and wanted to ask if there was any possible way to trigger a wallet pass notification according to a time-frame. (Ex. 9-5) I was looking at the documentation and saw that only relevant date is supported but wanted to ask. I also wanted to ask if its possible to suppress a notification if the Wallet Pass has been used/scanned. Please let me know if this is possible.
Posted
by
Post not yet marked as solved
0 Replies
62 Views
I have watched this session and I am very curious about which kind of document descriptors would be available (I assume US driving license is available as of now and only limited to given States) and if this feature is intended to be available outside US. As a developer working on identity related projects, I am quite curious if Apple has plans for this technology outside US after these pilots have been carried out. Is there any additional information on this?
Posted
by
Post not yet marked as solved
0 Replies
62 Views
Hello, I am wondering if it is possible for my key tag business to allow users to have a digital form of their key tag in their apple wallet. Just like how they have their debit/credit cards in their apple wallet.
Posted
by
Post not yet marked as solved
1 Replies
120 Views
I have a small building that has a centralized access control system with RFID readers for entry. I have been able to add my phone to the system and it does seem to work with the caveat that it tries multiple keys before getting to the key in my building database. The reader will flash and beep even after the door has been successfully unlocked.
Posted
by
Post not yet marked as solved
0 Replies
88 Views
I am creating event passes for Apple Wallet, and am trying to avoid them being hidden as "expired". In order to do that, I am setting the expirationDate property as follows: { "description": "Ticket ...", "formatVersion": 1, "eventTicket": { ... } "relevantDate": "2022-06-16T00:00-07:00", "expirationDate": "2022-08-20T23:55-07:00" } But Apple Wallet is still treating these passes as expired and hiding them, even though expirationDate is 2 months into the future. Do I need to specify another property, or change the format? I am having no luck finding anything other than that expirationDate should be formatted using W3C format, which it is.
Posted
by
Post not yet marked as solved
0 Replies
192 Views
Using build 20A5283p, checkCanRequestDocument is returning false, even on Simulator or Device with mock id profile installed. This is what I see in the console: 2022-06-14 12:07:58.717645-0400 MDLReader[529:16608] [Client] XPC connection error: Couldn’t communicate with a helper application. 2022-06-14 12:07:58.719067-0400 MDLReader[529:16608] [Client] DigitalPresentmentSession checkCanRequestDocumentType error from xpc: The operation couldn’t be completed. (DIIdentityErrorDomain error 1.) I am presuming either that the feature is not yet available or as noted here there is a new entitlement required that is not yet available. I did add a "regular" apple wallet entitlement with a merchant id tied to our developer account so just want to check to be sure I didn't miss something. Thanks!
Posted
by
Post not yet marked as solved
0 Replies
108 Views
After a mishap where Ventura upgraded my main Monterey installation instead of installing on a second Thunderbolt SSD on my MacStudio, I cannot get the Apple Wallet to work after a clean install. Cards cannot be added due to changes in security settings despite setting them to defaults. I toggled update settings etc. Spent more time on this then I will ever save from this feature. Is Apple Wallet allowed on only one boot installation on a system? Does it make a difference whether the 2nd install is on an internal volume vs external?
Posted
by
Post not yet marked as solved
0 Replies
164 Views
Hi there, Will it be possible to embed the SDK of any of your trusted partners (e.g. Stripe or Adyen) into my own App, to convert any iPhone into a fully functional card terminal? An integrated payment solution sounds like the perfect addition to a digital cash register running in the cloud.
Posted
by
Post marked as solved
1 Replies
161 Views
Hello, We are looking to make use of the user's verified ID in wallet in our app and were looking into how can we make our app request access to user's ID info.
Posted
by
Post not yet marked as solved
0 Replies
160 Views
Developing Apple Wallet functionality (provisioning credit and debit cards) from my App, I'm unable to open the Apple Wallet screens with the provisioning steps. The bug occurs only in RELEASE (installing the App from TestFlight). Tests in DEBUG/DEVELOP (deploying from XCode) are successful, this means that the Apple provisioning screen opens correctly. We have generated the provisioning profile, setting the Select for the Entitlement that Apple has enabled and we have loaded them correctly. At the same time, we enabled the CAPABILITY Apple Wallet and configured the related Entitlements as follows: <key>com.apple.developer.pass-type-identifiers</key> <array>       <string>$(TeamIdentifierPrefix)*</string> </array> <key>com.apple.developer.payment-pass-provisioning</key> <true/> The only information we have obtained, taken from the gather logging, is that when we install the App (from TestFlight) the following error is generated: <err> (0x16fecXXXXXX) _InstallProvisioningProfile: Could not install embedded profile: 0xeXXXXXXXXXXX (Attempted to install a Beta profile without the proper entitlement.). We have exhausted the alternatives available to us, we can only wait for Apple to respond. If anyone has encountered this situation and could share their experience or solution, I would be completely grateful.
Posted
by
Post not yet marked as solved
0 Replies
121 Views
try { const fileName = await profileService.downloadVerifyIdentity( req.user._id, req.params.id, ); if (fileName && fileName !== null) { const filePath = path.join(__dirname, `/apple-passes/${fileName}`); res.writeHead(200, { 'Content-type': 'application/vnd.apple.pkpass', 'Content-disposition': `attachment; filename=${fileName}`, }); const stream = fs.createReadStream(filePath); stream.pipe(res); return new Promise((resolve) => { fs.access(filePath, fs.constants.F_OK, (err) => { err ? resolve(err) : resolve(fs.unlinkSync(filePath)); }); }); } return 'Cannot download'; } catch (error) { return res.bad(error); } On Safari in iOS, the pk pass can be downloaded and added to Wallet successfully. On chrome and firefox, I can't download and don't get any errors message? I try to find many ways to fix this, but I can't. please send me a document or any resolved solution to fix this. Thanks a lot.
Posted
by
Post not yet marked as solved
1 Replies
311 Views
I have added Wallet from capabilities , then add "com.apple.developer.payment-pass-provisioning" in Entitles file. Then i get this error : "iOS Team Provisioning Profile: com.xyz.passkit" doesn't include the com.apple.developer.payment-pass-provisioning entitlement." Actually I want get apple wallets in my application. If I'm doing something wrong then can anyone please guide me to solved this error?
Posted
by
Post not yet marked as solved
1 Replies
202 Views
I want to access driving license or state ID document from apple wallet in my application. I want the document to verify the user. Can you please guide me how to do that?
Posted
by
Post marked as solved
1 Replies
342 Views
Hey folks. I generated a certificate for the Pass Type ID and after I installed it to the Keychain, I've got an error that the certificate is not trusted. Any thoughts what's the problem?
Posted
by
Post not yet marked as solved
1 Replies
202 Views
Hi! I am trying to archive my flutter app and creating an app identifier with (Groups, Associated domains, Push notifications, Sign in apple) but "Apple pay payment processing" is capability automatically added and when I create Profile provisioning its giving Provisioning profile "MSPP" doesn't support the Apple Pay capability. Provisioning profile "MSPP" doesn't include the com.apple.developer.in-app-payments entitlement. errors on xcode. I tryed to uncheck "Apple pay payment processing" in identifier and recreate Profile provioning but error reoccuring , any help, suggession very appreciated , thank you very much
Posted
by
Post not yet marked as solved
1 Replies
169 Views
Hello, Here is an example: https://i.insider.com/5dc1c27f3afd376f7b087c73?width=1000&format=jpeg&auto=webp But I want to add a small Logo to the bottom left of the pass of how United has it. I have tried to look up documentation around this, but Apple doesn't have any for this particular portion. Does anyone know how to add this?
Posted
by
Post not yet marked as solved
0 Replies
107 Views
I am building an Apple Pass which registers and unregisters against our API fine but I have noticed if you leave the Wallet UI open it starts to go into a loop between on and off and doesn't stop, nothing is being logged to the API endpoint to catch errors. Uploaded short video of issue here, can't find anyone having this issue on the forums I have been on. https://vimeo.com/709431943 Thanks
Posted
by