Posts

Post not yet marked as solved
0 Replies
224 Views
I have successfully created an Apple Pass wallet with a 'webServiceURL' using PHP. The pass is added to the Apple Wallet successfully. However, when I sent a push notification to update a specific pass using its serial number, it worked as expected initially. However, in the last few days, Apple has been triggering the 'webServiceURL' callback for all passes, when we trigger a push for one pass/deviceID. I'm unsure how to prevent this callback from Apple. Please provide assistance on resolving this issue.
Posted
by prasathpb.
Last updated
.
Post not yet marked as solved
0 Replies
268 Views
Hi All Earlier, I had created some Apple pass without 'webServiceURL' using PHP. Those pass were added in the Apple wallet successfully, Now. I need to update the existing those passes. Are there options to update those existing passes. Thanks in advance
Posted
by prasathpb.
Last updated
.
Post not yet marked as solved
0 Replies
296 Views
Hi All I have successfully created an Apple pass using PHP. The pass is added to the Apple wallet successfully, and the pass auto update working fine Now, is there an option to update the pass, when I open the Apple wallet? If Yes, please help me with the steps to follow. please help me on this to solve the problem Thanks in advance
Posted
by prasathpb.
Last updated
.
Post not yet marked as solved
1 Replies
448 Views
Hi All I have successfully created an Apple pass using PHP. The pass is added to the Apple wallet successfully. Now, I have to update the pass with a new value for one of the parameters in the pass. How do we update the value? Please refer to a sample PHP script for the same. I have checked the below sites, Here, they Mentioned only the input and output, as per the document I received the push token, What should I do after getting the push token? https://developer.apple.com/library/archive/documentation/PassKit/Reference/PassKit_WebService/WebService.html
Posted
by prasathpb.
Last updated
.
Post not yet marked as solved
7 Replies
6.4k Views
Area:FoundationVersion/Build:iOS 11.3.1 and 11.1.2Summary:getting wrong DateTime Format In iPhone Device.we using DateTime format as yyyy-MM-dd HH:mm:ss and replace empty with Tand excepted result as 2018-07-13T15:07:36, but getting date time as 2018-07-13T3:07:36TPMSteps to Reproduce://Method to get DateTime String+ (NSString *)getCurrentLocalDateTime{ NSDate *localDate = [NSDate date]; NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"]; NSString *dateString = [dateFormatter stringFromDate:localDate]; dateString = [dateString stringByReplacingOccurrencesOfString:@" " withString:@"T"]; NSLog(@"CURR: %@", dateString); return dateString; // yyyy-MM-ddTHH:mm:ss}Expected Results:Output Data must be - 2018-07-13T15:07:36Actual Results:Actual Data - 2018-07-13T3:07:36TPMKindly reply ASAP..
Posted
by prasathpb.
Last updated
.
Post not yet marked as solved
2 Replies
1.9k Views
APNS Content available push not received in iOS 15 device when app builds with Xcode 13.0, iOS 15 SDK. Push payload data with content available:1 not working {"aps":{"content-available":1},"update":"2|1"} but normal notification message push working {"aps":{"alert":"welcome"}} is there any payload or configuration in the header field for the iOS 15 silent push message?
Posted
by prasathpb.
Last updated
.