Post

Replies

Boosts

Views

Activity

Need Assistance: Unintended 'webServiceURL' Callback Triggered for All Apple Passes
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.
0
0
445
Jan ’24
Apple Wallet Pass Autoupdate
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
1
0
849
Aug ’23
APNS Content Available Push not working in iOS 15
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?
2
0
2.2k
Oct ’21
NSDateFormatter Issue - Getting wrong date format
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..
7
0
7.0k
Jul ’18