Questions tagged [passbook]

Passbook, also known as Wallet, is an application in iOS that allows users to store coupons, boarding passes, and other forms of mobile payment. It was designed by Apple and was released with iOS 6.

Passbook, also known as Wallet, is an application in iOS that allows users to store coupons, boarding passes, and other forms of mobile payment. It was designed by Apple and was released with iOS 6.

Each digital coupon or ticket is known as a "pass". A Pass contains a set of information specific to the type of pass. For example a store card might show the current account balance or an event ticket might indicate the seating allocation. Each pass can also display a 2D barcode that can be used by a vendor to scan and identify the pass.

When the user launches Passbook for the first time, they will be redirected to the App Store to download applications with Passbook integration. Apps can be used to add passes directly to the user's Passbook

In addition to App, Passes can also be added using Safari and the built-in Mail application as well. Passes can be opened on OS X 10.8.2 and later, but are then synced to the user's iPhone/iPod using iCloud. Passes cannot be stored on OS X.

Although the application is available in iOS 6 or later, it is currently only available on iPhone and iPod Touch, but not on iPad.

Passbook has the following features

  • Displays different styles based on the type of pass: generic, coupon, store card, boarding pass or ticket.
  • Displays 2D barcodes of following types: Aztec, PDF417 and QR.
  • Triggered by location.
  • Triggered by time of pass.
  • Can be updated by the pass provider

Here is an Apple guide for implementing passbook features: Getting Started with Passbook on iOS 6

478 questions
6
votes
2 answers

Why do some Apple Wallet generated QR codes contain so much additional junk?

I am trying to create an Apple Wallet pass for SMART Health Card QR codes. The content of the QR code will be something like the following dummy data, and it appears to be generated with a medium error correction…
ieatpizza
  • 464
  • 4
  • 14
6
votes
3 answers

Passbook Integration iOS (Dynamically)

I want to integrate Passbook into my coupons app. I was following this tutorial: http://www.raywenderlich.com/20734/beginning-passbook-part-1 We know for adding a pass we need to first create a .pkpass file. I am able to create a .pkpass file…
Krunal
  • 6,440
  • 21
  • 91
  • 155
6
votes
1 answer

safari ios cannot open passbook pkpass

I've seen already some topics on this subject, but havent been able to find the answer: Safari cannot open .pkpass files that I am sending as email attachemnts first I thought it might have something do with my settings, but then I found out that I…
lucafik
  • 295
  • 1
  • 6
  • 18
6
votes
1 answer

Encoding binary barcode in Passbook

I have to integrate Passbook with a website that provides PDF417 barcodes with data encoded in binary (as opposed to text), such as this: Is there any way I can encode this binary chunk in pass.json so that Passbook displays it on the iPhone…
Kerido
  • 2,930
  • 2
  • 21
  • 34
6
votes
2 answers

How to built and print a scannable Pass for Passbook in iOS7

i can't figure out how to build a OR Code for a Pass that is scannable with the new QR code scanner in iOS7' Passbook App. When I try to scan a QR Code with a link to a working Pass, the App says it is 'No Pass available for this Card'. Card,…
poolsideDev
  • 390
  • 4
  • 13
6
votes
2 answers

How to access passes from passbook in my app?

I'm creating app in which I'm adding and showing passes from passbook app of iOS6 to my app. But when I run application on simulator it's showing added passes but when I run same on Device it's showing that my passbook is empty. I have followed iOS6…
Trup
  • 635
  • 5
  • 17
6
votes
1 answer

How to use Apple Push Notifications to update a Passbook

I have created Passbooks and they are loaded onto my customer's iOS devices. I need to update these Passbooks. According to the Passbook docs you need to use the Apple Push Notification Service (APNS) to trigger a pull from the iOS device in order…
6
votes
3 answers

What uses Passbook's Logging Endpoint?

I'm just beginning the implementation of my Web Service for passbook. In the docs I see there's an optional endpoint for logs, but don't understand what uses/consumes this endpoint? As far as I can tell, it's only used by humans who wish to check…
Ev.
  • 7,109
  • 14
  • 53
  • 87
5
votes
1 answer

Push for pass on Passbook

I try send push notification on Passbook by ApnsPHP library $config['production'] = DOCROOT . '/my_cert.pm'; $config['entrust'] = DOCROOT . '/entrust_root_certification_authority_2048.pem'; $config['passphrase'] = ''; $token =…
5
votes
0 answers

My iPhone does not offer to add a .pkpass file to my Apple Wallet

I created a pass using the following node module: https://github.com/assaf/node-passbook Everything seems to work well. However, when I send it to myself on email and click on it on my iPhone in the mail client, I'm not offered to add it to the…
Nikola Schou
  • 2,386
  • 3
  • 23
  • 47
5
votes
1 answer

How to reliably determine whether Passbook is available?

Apple provides a dedicated method in Passkit to determine whether the PassLibrary is available: [PKPassLibrary isPassLibraryAvailable] This works as expected on iPhone and iPad with one exception: The iPad Air 2 returns YES but it seems that it…
DEAD10CC
  • 910
  • 1
  • 6
  • 20
5
votes
1 answer

Passbook generates PKPass error

I add passbook in my app, when the system is iOS6.0 it work correctly.When the system is iOS7.1 it appear an error. I check the code found that PKPass *newPass = [[PKPass alloc] initWithData:passData error:&error]; When generate PKPass in iOS6.0…
Dracuuula
  • 313
  • 2
  • 15
5
votes
3 answers

Receiving Passbook's .pkpass from URL without Webview

Hi first of all i have to confess i really don't understand how the whole Passbook topic really works. So here's my situation: I have a backend system which creates .pkpass files stores them and creates an URL. When i open this URL in my browser it…
d3p0nit
  • 442
  • 5
  • 16
5
votes
1 answer

How get feedback from APNs when sending push notification

Now I can send push Token from device that has installed a pass already, but I don't know how the feedback work in this point. From apple docs, Apple Push Notification service (APNs) provides feedback to server to tell if pushToken is valid or not.…
malinchhan
  • 767
  • 2
  • 8
  • 28
5
votes
1 answer

Create pass for passbook in php

Im trying to create dynamically coupons for my app. I have an PHP Server that create them. But i don't know why they doesn't work on the passbook. If i create the pass from Terminal it works fine. But in PHP with PHP-PKPass. I left the code in PHP…
Eduardo Iglesias
  • 1,056
  • 18
  • 42
1
2
3
31 32