Reputation: 1
I have created a solution for Apple Wallet Passes via Passkit. The issue I'm facing is passes do not automatically update, I have to swipe down on them to update them.
My get_pass serves the correct headers
header("Content-Type: application/vnd.apple.pkpass");
header('Last-Modified: '.gmdate('D, d M Y H:i:s T'));
The devices are registered, stored in my database along with push keys and passes are showing in updated.json correctly.
{
"lastUpdate": 1740470132,
"serialNumbers": [
"67bd634add506"
]
}
I get 200 responses from the APNS service when updating a pass and I'm using the same key to interact with APNS as what signed the passes.
Upvotes: 0
Views: 10