...
- apx_dpl is supplied as an extra field key, with a valid URL scheme value
- Sending a push action with a deep link action. Field can be sent in the payload of notification using apx_dpl key. Details for sending notification can located here - Trigger Push Message API (Direct)- Based on Template ( Message for single end user)
See example Example on how to use the sent key in Appoxee iOS SDK is mentioned below:
Objective-C
Code Block |
---|
#pragma mark - Schemes - (void)appoxee:(nonnull Appoxee *)appoxee handledRemoteNotification:(nonnull APXPushNotification *)pushNotification andIdentifer:(nonnull NSString *)actionIdentifier { // Here the special field will be received in extra parameters in "pushNotification" NSLog(@"URL - %@", [pushNotification.extraFields objectForKey:@"apx_dpl"]); } |
...