Localtab |
---|
| Integrating the iOS Push Notifications SDK 4.0+ (Swift)The following information will show you how to integrate the Vibes Push Notifications SDK (v.4+) into an iOS app. The Swift iOS Example app is also available to show you how to implement the SDK.
Info |
---|
title | Key Integration Steps |
---|
| - Implement basic device and push registration
. This will enable - to simple push notifications.
using your primary person identifier within your CRM or internal systems- . This will make a user "known" and allow for platform targeting
an segementation- and segmentation. Note: If you are using cross channel segmentation between channels, the external_person_id must be the same in the SMS, Push, and Wallet channels.
- Add advanced push options: rich push, notification sounds, deep linking, etc (Optional)
- Add app inbox support (Optional)
Note: Platform accounts are available via the platform for development and UAT testing. |
Anchor |
---|
| 4.0_swift_app_config |
---|
| 4.0_swift_app_config |
---|
|
App Configuration Add the following to your application:didFinishLaunchingWithOptions in your AppDelegate.swift file: Code Block |
---|
Vibes.configure(appId: "YOUR_APP_ID") |
The Vibes SDK will notify your app of any failed or successful API calls via a delegate. When configuring the Vibes SDK, assign the delegate to any class implementing the `VibesAPIDelegate` protocol. For example, you could set the delegate to your App Delegate immediately after configuration: Code Block |
---|
...
Vibes.configure(appId: "YOUR_APP_ID")
Vibes.shared.set(delegate: self)
}
func didRegisterPush(error: VibesError?) {
...
} |
If, for any reason, you want to override the default API URL, tracked event type, storage type, advertisingID (if you use AdSupport), or the default logger, pass in an optional configuration: Code Block |
---|
let config = VibesConfiguration(advertisingId: "YOUR_ADVERTISING_ID", //optional
apiUrl: nil, //defaults to US endpoint as defined below
logger: nil, // implement VibesLogger to configure your own logger
storageType: .USERDEFAULTS, // default is .KEYCHAIN
trackedEventTypes: [TrackedEventType.launch, TrackedEventType.clickthru] as NSArray)
Vibes.configure(appId: "YOUR_APP_ID", configuration: configuration) |
You must reset the Vibes default endpoint if you want to use the Vibes Platform Europe instance, as defined in Technical Details. Anchor |
---|
| 4.0_swift_register_device |
---|
| 4.0_swift_register_device |
---|
| Registering a Device Add the following code wherever it makes the most sense for your application. Code Block |
---|
Vibes.shared.registerDevice() |
Delegate method: Code Block |
---|
func didRegisterDevice(deviceId: String?, error: Error?) {
...
} |
Anchor |
---|
| 4.0_swift_unregister_device |
---|
| 4.0_swift_unregister_device |
---|
| Unregistering a DeviceAdd the following code wherever it makes the most sense for your application. Code Block |
---|
Vibes.shared.unregisterDevice() |
Delegate method: Code Block |
---|
func didUnregisterDevice(error: Error?){
...
} |
Anchor |
---|
| 4.0_swift_push_messaging |
---|
| 4.0_swift_push_messaging |
---|
|
Push Messaging Configuration Anchor |
---|
| 4.0_swift_register_push |
---|
| 4.0_swift_register_push |
---|
| Registering for Push- Register for remote notifications by following the OS Local and Remote Notification Programming guide.
Add the following code to your app delegate. Code Block |
---|
func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
...
Vibes.shared.setPushToken(fromData: deviceToken)
Vibes.shared.registerPush()
...
} |
Delegate method: Code Block |
---|
func didRegisterPush(error: Error?) {
...
} |
Anchor |
---|
| 4.0_swift_unregister_push |
---|
| 4.0_swift_unregister_push |
---|
| Unregistering for PushAdd the following code wherever it makes the most sense for your application.
Code Block |
---|
Vibes.shared.set(delegate: self)
Vibes.shared.unregisterPush() |
Delegate method: Code Block |
---|
func didUnregisterPush(error: Error?) {
...
} |
Anchor |
---|
| 4.0_swift_device_location |
---|
| 4.0_swift_device_location |
---|
| Update the Device LocationAdd the following code wherever it makes the most sense for your application to update the location. It is not required and stores the current location with device. Code Block |
---|
Vibes.shared.updateDevice(lat: 41.8686839, long: -87.8075274) |
Delegate method: Code Block |
---|
func didUpdateDeviceLocation(error: Error?) {
...
} |
Anchor |
---|
| 4.0_swift_event_tracking |
---|
| 4.0_swift_event_tracking |
---|
| Event TrackingLaunch and clickthru events are mostly automatically tracked for you, although to properly track clickthru events, you must add the following to your AppDelegate: Code Block |
---|
# iOS 9
extension AppDelegate {
func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
VibesPush.Vibes.shared.receivedPush(with: userInfo)
}
} |
Code Block |
---|
# iOS 10
extension AppDelegate: UNUserNotificationCenterDelegate {
public func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
VibesPush.Vibes.shared.receivedPush(with: notification.request.content.userInfo)
completionHandler([])
}
} |
Anchor |
---|
| 4.0_swift_deep_link |
---|
| 4.0_swift_deep_link |
---|
| Deep LinkDeep linking consists of adding functionality to go to a specific view, a particular section of a page, or a certain tab. If you have deep linking enabled in your push notification setup, you can retrieve its value in the push notification payload. Code Block |
---|
{
"aps": {
"alert": {
"title": "Push Notification!",
"subtitle": "From Vibes",
"body": "You did it! "
}
},
"client_app_data": {
...
"deep_link": "XXXXXXX",
...
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
Sample code for parsing the push notification payload and navigating to the deep link: Code Block |
---|
@available(iOS 10.0, *)
func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
handlePushNotification(userInfo: response.notification.request.content.userInfo)
completionHandler()
}
// For iOS 9
func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
handlePushNotification(userInfo: userInfo)
completionHandler(.newData)
}
fileprivate func handlePushNotification(userInfo: [AnyHashable : Any]) {
// Allow Vibes to track the .launch and .clickthru events from the notification
Vibes.shared.receivedPush(with: userInfo)
// Check for a deep link in the payload
guard let clientData = userInfo["client_app_data"] as? [String: Any],
let deepLink = clientData["deep_link"] as? String
else { return }
// Use deepLink here to navigate to the appropriate view controller
} |
Anchor |
---|
| 4.0_swift_notification_sound |
---|
| 4.0_swift_notification_sound |
---|
| Notification SoundIf your application contains a custom sound for a push notification, you can specify this sound on the Vibes Platform. The push payload received will look like the following: Code Block |
---|
{
"aps": {
"alert": {
"title": "Push Notification!",
"subtitle": "From Vibes",
"body": "You did it! "
},
"sound":"sound.filename",
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
The sound will be played automatically if the sound file exists in your project resources. Anchor |
---|
| 4.0_swift_custom_properties |
---|
| 4.0_swift_custom_properties |
---|
| Custom PropertiesYou can specify up to 10 key-value pairs on the Vibes Platform. The push payload received will look like the following: Code Block |
---|
{
"aps": {
"alert": {
"title": "Push Notification!",
"subtitle": "From Vibes",
"body": "You did it! "
}
},
"client_custom_data":{
"key1":"val1",
"key2":"val2",
....
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
In your application you can retrieve the custom data like this: Code Block |
---|
@available(iOS 10.0, *)
func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
if let customData = response.notification.request.content.userInfo["client_custom_data"] as? [String: Any] {
// Use customData here
}
...
}
// For iOS 9
func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
if let customData = userInfo["client_custom_data"] as? [String: Any] {
// Use customData here
}
...
} |
Anchor |
---|
| 4.0_swift_badge |
---|
| 4.0_swift_badge |
---|
| BadgeOn the Vibes Platform, you can specify your application badge value. The push payload received will look like the following: Code Block |
---|
{
"aps": {
"alert": {
"title": "Push Notification!",
"subtitle": "From Vibes",
"body": "You did it! "
},
"badge":1,
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
Anchor |
---|
| 4.0_swift_category |
---|
| 4.0_swift_category |
---|
| CategoryPush notification category is a new feature from iOS 10.+. On the Vibes Platform, you can specify the category of your push notification. The push payload received will look like the following: Code Block |
---|
{
"aps": {
"alert": {
"title": "Push Notification!",
"subtitle": "From Vibes",
"body": "You did it! "
},
"category":"some category"
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
Please check the Apple documentation for how to configure categories and actionable notification. Anchor |
---|
| 4.0_swift_rich_media |
---|
| 4.0_swift_rich_media |
---|
| Rich Media: Image, Video, AudioFrom version iOS 10, you can send rich content embedded (image, video, or audio) in push notifications. Please check the Apple documentation to check how to integrate rich push capability to your application. On the Vibes Platform, you can specify the rich content you want your customers to see. The push payload received will look like the following: Code Block |
---|
{
"aps": {
"alert": {
"title": "Push Notification!",
"subtitle": "From Vibes",
"body": "You did it! "
},
"mutable-content":1
},
"client_app_data":{
"client_message_id":"fgfCHIUHIY8484FYIHWF",
"media_url" : "https://www.publiclyhostedurl.com"
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
Anchor |
---|
| 4.0_swift_silent_push |
---|
| 4.0_swift_silent_push |
---|
| Silent PushOn the Vibes Platform, you can specify to send a push notification as a silent or background push. Silent or background push notification can be used to update a badge payload or send custom data to the app. A push notification received will look like the following: Code Block |
---|
{
"aps": {
"content-available": 1
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
Anchor |
---|
| 4.0_swift_person_management |
---|
| 4.0_swift_person_management |
---|
|
Person Management Since v 4.0.0, it is now possible to fetch a Person record, which is also accessible via the Person API as documented here. The Structure of a PersonA Person exposes the following methods for obtaining information more information. Method | Comment |
---|
public var personKey: String? | Returns the UUID that uniquely identifies the user associated with the device. | public var mdn: String? | Returns the MDN of the user associated with the device | public var externalPersonId: String? | Returns the external person id that may have been specified for this user associated with the |
Fetching the Person RecordThe person associated with the device can be obtained by calling the getPerson method on the Vibes SDK. Code Block |
---|
Vibes.shared.getPerson() {
(person: Person ? , error : VibesError ? ) in
if let error = error {
// error occurred, handle it
return
}
let personKey = person.personKey
// use the person key and other person information
...
} |
Inbox support is now available in v 4.0.0 and later of the Vibes Push SDK. The current feature set only enables obtaining and updating these inbox messages and does not provide any UI components for rendering the inbox messages. Anchor |
---|
| 4.0_swift_app_inbox |
---|
| 4.0_swift_app_inbox |
---|
|
App Inbox Configuration (Beta)Inbox support is now available in v 4.0.0 and later of the Vibes Push SDK. The current feature set only enables obtaining and updating these inbox messages and does not provide any UI components for rendering the inbox messages. Initializing the Inbox SupportThere is no additional requirements for configuring the support for inbox messages beyond the standard process for configuring the iOS Push SDK documented here. Anchor |
---|
| 4.0_swift_structure_inbox |
---|
| 4.0_swift_structure_inbox |
---|
| The Structure of an InboxMessageAn InboxMessage class exposes the following fields for obtaining information about an inbox message. Field | Comment |
---|
public var messageUID: String? | Returns the messageUID that uniquely identifies this inbox message | public var subject: String? | Returns the subject that can be used as a header for an inbox message | public var content: String? | Returns the content for further textual information to the reader of the message. | public var detail: String? | Returns a URL that may lead to an image, a web page or any rich media that one may want to display as the landing page of the inbox message (Beta note: Adding "vibes_inbox_detail" to Custom Properties will populate the "detail" field) | public var read: Bool? | Returns true or false to determine if the message has previously been read by the user of the app. | public var expiresAt: Date? | Returns a timestamp of when a message will be considered expired | public var collapseKey: String? | Returns a key that is used to remove other messages previously sent with the same key. | public var createdAt: Date | Returns the date on which the message was created on the platform. | public var iconImage: String? | Returns a URL that points to an image that can displayed as an icon for an inbox message list (1 of 2) (Beta note: Adding "vibes_inbox_icon" to Custom Properties will populate the "icon" field) | public var mainImage: String? | Returns a URL that points to an image that can displayed as an icon for an inbox message list (2 of 2) (Beta note: Adding "vibes_inbox_main" to Custom Properties will populate the "main" field) | public var inboxCustomData: [String: AnyObject] | Contains a map of custom data that you can pass to the app per message. | public var inboxMessageUID: String? | A UID which maps a push message to this inbox message. |
Anchor |
---|
| 4.0_swift_inbox_beta |
---|
| 4.0_swift_inbox_beta |
---|
| Special Note for BetaFor the beta release of App Inbox, the push messages will all be transformed into push messages. Add images to the inbox message by completing the following steps in the Vibe Engagement Platform: - Under 'Advanced Options', click "+Add Option" and from the dropdown menu, choose "Custom Properties".
- Enter any of these keys and a corresponding url to populate the "detail", "icon" and "main" values of the generated inbox message.
- vibes_inbox_detail will populate the "detail" field
- vibes_inbox_icon will populate the "icon" field
- vibes_inbox_main will populate the "main" field
An inbox message will be received with the "detail", "icon" and "main" fields populated. Anchor |
---|
| 4.0_swift_fetch_inbox |
---|
| 4.0_swift_fetch_inbox |
---|
| Fetching Inbox MessagesA list of maximum 200 messages for each user of the app can be fetched by invoking the fetchInboxMessages method as show below. On success, an array of InboxMessages is returned, otherwise there is an error passed to the callback. Note that by default, these messages are sorted in descending order by date created, which means the most recent message will be first in the collection.
Code Block |
---|
Vibes.shared.fetchInboxMessages() {
(messages: [InboxMessage], error: VibesError ? ) in
if let error = error {
// error occurred, handle here
return
}
// use messages
...
} |
Anchor |
---|
| 4.0_swift_fetch_single_inbox |
---|
| 4.0_swift_fetch_single_inbox |
---|
| Fetching A Single Inbox MessageA single inbox message can be fetched by invoking fetchInboxMessage with the messageUID of the requested message as shown below. On success, a single InboxMessage is obtained, otherwise there is an error passed to the callback. Code Block |
---|
Vibes.shared.fetchInboxMessage(messageUID: messageUID) {
(message: InboxMessage, error: VibesError ? ) in
if let error = error {
// error occurred, handle here
return
}
// use the message
...
} |
Call the inbox_open event trigger after calling the fetchInboxMessage function to represent opening an inbox message. This will trigger inbox_open event for the inbox message. This will track customer engagement for platform reporting. Code Block |
---|
Vibes.shared.onInboxMessageOpen(inboxMessage: message) |
Anchor |
---|
| 4.0_swift_inbox_mark_read |
---|
| 4.0_swift_inbox_mark_read |
---|
| Marking an Inbox Message as ReadAn inbox message can be marked as read so it could possibly be rendered differently from unread inbox messages. This is done by invoking markInboxMessageAsRead with the messageUID of the requested message as shown below. On success, an updated version of the InboxMessage is returned, otherwise there is an error passed to the callback. Code Block |
---|
Vibes.shared.markInboxMessageAsRead(messageUID: messageUID) {
(message: InboxMessage, error: VibesError ? ) in
if let error = error {
// error occurred, handle here
return
}
// use the updated message
...
} |
Anchor |
---|
| 4.0_swift_expire_inbox_message |
---|
| 4.0_swift_expire_inbox_message |
---|
| Expiring an Inbox MessageAn inbox message can be marked as expired which would automatically make it unavailable for viewing when inbox messages are re-fetched again. This is done by invoking expireInboxMessage with the messageUID of the requested message as shown below. On success, and updated InboxMessage is returned with the expirationDate set, otherwise there is an error message passed to the callback. Code Block |
---|
Vibes.shared.expireInboxMessage(messageUID: messageUID) {
(message: InboxMessage, error: VibesError ? ) in
if let error = error {
// error occurred, handle here
return
}
// use the updated message
...
} |
Anchor |
---|
| 4.0_swift_push_inbox_link |
---|
| 4.0_swift_push_inbox_link |
---|
| Push Message Linked to An InboxMessageSince v 4.0.0, it is now possible for a push message to contain a pointer to an inbox message called inboxMessageUid. In such a scenario, one can override the default VibesReceiver, fetch the associated InboxMessage and then open your own custom detail screen when such a message is received. Below is an example Code Block |
---|
@available(iOS 10.0, *)
func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping() -> Void) {
print(">>> receive remote push notif")
if let clientAppData = response.notification.request.content.userInfo["client_app_data"] as ? [String: Any] {
// retrieve inbox message UID and pass it to Rx observers
if let inboxMessageUID = clientAppData["inbox_message_uid"] as ? String {
Vibes.shared.fetchInboxMessage(messageUID: inboxMessageUID) {
(message: InboxMessage, error: VibesError ? ) in
if let error = error {
// error occurred, handle here
return
}
// open your custom View detail Controller
let yourVC = YourDetailsViewController.loadFromNib()
yourVC.message = message
// set nav bar
let navCont = UINavigationController(rootViewController: yourVC)
self ? .present(navCont, animated: true, completion: nil)
}
}
}
} |
|
Localtab |
---|
| Integrating the iOS Push Notifications SDK 4.0+ (Objective-C)The following information will show you how to integrate the Vibes Push Notifications SDK (v.3+) into an iOS app (Objective-C). The Objective-C iOS Example app is also available to show you how to implement the SDK. Anchor |
---|
| 4.0_objectivec_app_config |
---|
| 4.0_objectivec_app_config |
---|
|
App Configuration Add the following to your application:didFinishLaunchingWithOptions in your AppDelegate.m file: Code Block |
---|
[Vibes configureWithAppId:@"[YOUR APP ID HERE]"]; |
The Vibes SDK will notify your app of any failed or successful API calls via a delegate. When configuring the Vibes SDK, assign the delegate to any class implementing the `VibesAPIDelegate` protocol. For example, you could set the delegate to your App Delegate immediately after configuration: Code Block |
---|
[Vibes configureWithAppId:@"[YOUR APP ID HERE]"];
[[Vibes shared] setWithDelegate:(id)self];
}
- (void)didRegisterDeviceWithDeviceId:(NSString *)deviceId error:(NSError *)error {
...
} |
If, for any reason, you want to override the default API URL, tracked event type, storage type, advertisingID (if you use AdSupport), or the default logger, pass in an optional configuration: Code Block |
---|
NSArray *trackedEvents = [[NSArray alloc] initWithObjects:[NSNumber numberWithInt:TrackedEventTypeLaunch], [NSNumber numberWithInt:TrackedEventTypeClickthru], nil];
VibesConfiguration *config = [[VibesConfiguration alloc] initWithAdvertisingId:@"[your advertising id]" // if you're using AdSupport
apiUrl:NULL
logger:NULL // implement VibesLogger to configure your own logger
storageType:VibesStorageEnumUSERDEFAULTS // or VibesStorageEnumKEYCHAIN
trackedEventTypes:trackedEvents]; // you can also pass an empty array if you don't want to record any events.
[Vibes configureWithAppId:@"[YOUR APP ID HERE]"
configuration:(id)config]; |
You must reset the Vibes default endpoint if you want to use the Vibes Platform Europe instance, as defined in Technical Details. Anchor |
---|
| 4.0_objectivec_push_messaging |
---|
| 4.0_objectivec_push_messaging |
---|
|
Push Configuration Registering a DeviceAdd the following code wherever it makes the most sense for your application. Code Block |
---|
[[Vibes shared] registerDevice]; |
Delegate method: Code Block |
---|
- (void)didRegisterDeviceWithDeviceId:(NSString *)deviceId error:(NSError *)error {
...
} |
Unregistering a DeviceAdd the following code wherever it makes the most sense for your application. Code Block |
---|
[[Vibes shared] unregisterDevice]; |
Delegate method: Code Block |
---|
- (void)didUnregisterDeviceWithError:(NSError *)error {
...
} |
Registering for Push- Register for remote notifications by following the OS Local and Remote Notification Programming guide.
Add the following code to your app delegate. Code Block |
---|
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
...
[[Vibes shared] setPushTokenFromData:deviceToken];
[[Vibes shared] registerPush];
...
} |
Delegate method: Code Block |
---|
- (void)didRegisterPushWithError:(NSError *)error {
...
} |
Unregistering for PushAdd the following code wherever it makes the most sense for your application. Code Block |
---|
[[Vibes shared] unregisterPush]; |
Delegate method: Code Block |
---|
- (void)didUnregisterPushWithError:(NSError *)error {
...
} |
Update the Device LocationAdd the following code wherever it makes the most sense for your application to update the location. It is not required and stores the current location with device. Code Block |
---|
[[Vibes shared] updateDeviceWithLat:latitude.doubleValue long:longitude.doubleValue]; |
Delegate method: Code Block |
---|
- (void)didUpdateDeviceLocationWithError:(NSError *)error {
...
} |
Event TrackingLaunch and clickthru events are mostly automatically tracked for you, although to properly track clickthru events, you must add the following to your AppDelegate: Code Block |
---|
# iOS 9
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler {
...
[[Vibes shared] receivedPushWith:userInfo at:[NSDate date]];
completionHandler(UNNotificationPresentationOptionSound | UNNotificationPresentationOptionAlert | UNNotificationPresentationOptionBadge);
} |
Code Block |
---|
# iOS 10
- (void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void (^)(void))completionHandler {
...
[[Vibes shared] receivedPushWith:response.notification.request.content.userInfo at:[NSDate date]];
...
} |
Deep LinkDeep linking consists of adding functionality to go to a specific view, a particular section of a page, or a certain tab. If you have deep linking enabled in your push notification setup, you can retrieve its value in the push notification payload with the following: Code Block |
---|
{
"aps": {
"alert": {
"title": "Push Notification!",
"subtitle": "From Vibes",
"body": "You did it! "
}
},
"client_app_data": {
...
"deep_link": "XXXXXXX",
...
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
Sample code for parsing the push notification payload and navigating to the deep link: Code Block |
---|
- (void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void (^)(void))completionHandler {
[self receivedPushNotifWith:response.notification.request.content.userInfo];
completionHandler();
}
// For iOS 9
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler {
[self receivedPushNotifWith:userInfo];
completionHandler(UNNotificationPresentationOptionSound | UNNotificationPresentationOptionAlert | UNNotificationPresentationOptionBadge);
}
- (void)receivedPushNotifWith:(NSDictionary *)userInfo {
[[Vibes shared] receivedPushWith:userInfo at:[NSDate date]];
if (userInfo[@"client_app_data"][@"deep_link"]) {
// Use the deep_link value here to navigate to the appropriate view controller
}
} |
Notification SoundIf your application contains a custom sound for a push notification, you can specify this sound on the Vibes Platform. The push payload received will look like the following: Code Block |
---|
{
"aps": {
"alert": {
"title": "Push Notification!",
"subtitle": "From Vibes",
"body": "You did it! "
},
"sound":"sound.filename",
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
The sound will be played automatically if the sound file exists in your project resources. Custom Properties You can specify up to 10 key-value pairs on the Vibes Platform. The push payload received will look like the following: Code Block |
---|
{
"aps": {
"alert": {
"title": "Push Notification!",
"subtitle": "From Vibes",
"body": "You did it! "
}
},
"client_custom_data":{
"key1":"val1",
"key2":"val2",
....
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
In your application you can retrieve the custom data like this: Code Block |
---|
- (void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void (^)(void))completionHandler {
if (response.notification.request.content.userInfo[@"client_custom_data"]) {
// Use the client_custom_data value here
}
...
}
// For iOS 9
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler {
if (userInfo[@"client_custom_data"]) {
// Use the client_custom_data value here
}
...
} |
BadgeOn the Vibes Platform, you can specify your application badge value. The push payload received will look like the following: Code Block |
---|
{
"aps": {
"alert": {
"title": "Push Notification!",
"subtitle": "From Vibes",
"body": "You did it! "
},
"badge":1,
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
CategoryPush notification category is a new feature from iOS 10.+. On the Vibes Platform, you can specify the category of your push notification. The push payload received will look like the following: Code Block |
---|
{
"aps": {
"alert": {
"title": "Push Notification!",
"subtitle": "From Vibes",
"body": "You did it! "
},
"category":"some category"
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
Please check the Apple documentation for how to configure categories and actionable notification. From version iOS 10, you can send rich content embedded (image, video, or audio) in push notifications. Please check the Apple documentation to check how to integrate rich push capability to your application. On the Vibes Platform, you can specify the rich content you want your customers to see. The push payload received will look like the following: Code Block |
---|
{
"aps": {
"alert": {
"title": "Push Notification!",
"subtitle": "From Vibes",
"body": "You did it! "
},
"mutable-content":1
},
"client_app_data":{
"client_message_id":"fgfCHIUHIY8484FYIHWF",
"media_url" : "https://www.publiclyhostedurl.com"
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
Silent PushOn the Vibes Platform, you can specify to send a push notification as a silent push. The push payload received will look like the following: Code Block |
---|
{
"aps": {
"content-available": 1
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
In this example, we send a silent push in order to update the badge number appearing on the application icon. Anchor |
---|
| 4.0_objectivec_person_management |
---|
| 4.0_objectivec_person_management |
---|
|
Person ManagementSince v 4.0.0, it is now possible to fetch a Person record, which is also accessible via the Person API as documented here. The Structure of a PersonA Person exposes the following methods for obtaining information more information. Method | Comment |
---|
public var personKey: String? | Returns the UUID that uniquely identifies the user associated with the device. | public var mdn: String? | Returns the MDN of the user associated with the device | public var externalPersonId: String? | Returns the external person id that may have been specified for this user associated with the |
Fetching the Person RecordThe person associated with the device can be obtained by calling the getPerson method on the Vibes SDK. Code Block |
---|
Vibes.shared.getPerson() {
(person: Person ? , error : VibesError ? ) in
if let error = error {
// error occurred, handle it
return
}
let personKey = person.personKey
// use the person key and other person information
...
} |
Anchor |
---|
| 4.0_objectivec_app_inbox |
---|
| 4.0_objectivec_app_inbox |
---|
|
App Inbox Configuration (Beta) Inbox support is now available in v 4.0.0 and later of the Vibes Push SDK. The current feature set only enables obtaining and updating these inbox messages and does not provide any UI components for rendering the inbox messages. The Structure of an InboxMessageAn InboxMessage class exposes the following fields for obtaining information about an inbox message.
Field | Comment | public varmessageUID:String? | Returns the messageUID that uniquely identifies this inbox message | publicvarsubject:String? | Returns the subject that can be used as a header for an inbox message | publicvarcontent:String? | Returns the content for further textual information to the reader of the message. | publicvardetail:String? | Returns a URL that may lead to an image, a web page or any rich media that one may want to display as the landing page of the inbox message (Beta note: Adding "vibes_inbox_detail" to Custom Properties will populate the "detail" field) | publicvarread:Bool? | Returns true or false to determine if the message has previously been read by the user of the app. | publicvarexpiresAt:Date? | Returns a timestamp of when a message will be considered expired | public varcollapseKey: String? | Returns a key that is used to remove other messages previously sent with the same key. | public varcreatedAt:Date | Returns the date on which the message was created on the platform. | publicvariconImage:String? | Returns a URL that points to an image that can displayed as an icon for an inbox message list (1 of 2). (Beta note: Adding "vibes_inbox_icon" to Custom Properties will populate the "icon" field) | publicvarmainImage:String? | Returns a URL that points to an image that can displayed as an icon for an inbox message list (2 of 2) (Beta note: Adding "vibes_inbox_main" to Custom Properties will populate the "main" field) | public var inboxCustomData: [String: AnyObject] | Contains a map of custom data that you can pass to the app per message. | publicvarinboxMessageUID:String? | A UID which maps a push message to this inbox message. |
Special Note for BetaFor the beta release of App Inbox, the push messages will all be transformed into push messages. Add images to the inbox message by completing the following steps in the Vibe Engagement Platform: - Under 'Advanced Options', click "+Add Option" and from the dropdown menu, choose "Custom Properties".
- Enter any of these keys and a corresponding url to populate the "detail", "icon" and "main" values of the generated inbox message.
- vibes_inbox_detail will populate the "detail" field
- vibes_inbox_icon will populate the "icon" field
- vibes_inbox_main will populate the "main" field
An inbox message will be received with the "detail", "icon" and "main" fields populated. Fetching Inbox MessagesA list of maximum 200 messages for each user of the app can be fetched by invoking the fetchInboxMessages method as show below. On success, an array of InboxMessages is returned, otherwise there is an error passed to the callback.
Note that by default, these messages are sorted in descending order by date created, which means the most recent message will be first in the collection. Code Block |
---|
[
[Vibes shared] fetchInboxMessageWithMessageUID:inboxMessageUID: ^ (NSArray < InboxMessage * > * _Nonnull messages, NSError * _Nullable error) {
if (error == nil) {
// error occurred, handle here
} else {
// use messages
}
}
]; |
Fetching A Single Inbox MessageA single inbox message can be fetched by invoking fetchInboxMessage with the messageUID of the requested message as shown below. On success, a single InboxMessage is obtained, otherwise there is an error passed to the callback. Code Block |
---|
[
[Vibes shared] fetchInboxMessageWithMessageUID: messageUID: ^ (InboxMessage * _Nullable message, NSError * _Nullable error) {
if (error == nil) {
// error occurred, handle here
} else {
// use the message
}
}
] |
Call the inbox_open event trigger after calling the fetchInboxMessage function to represent opening an inbox message. This will trigger inbox_open event for the inbox message.This will track customer engagement for platform reporting. Code Block |
---|
[[Vibes shared] onInboxMessageOpenWithInboxMessage:message] |
Marking an Inbox Message as ReadAn inbox message can be marked as read so it could possibly be rendered differently from unread inbox messages. This is done by invoking markInboxMessageAsRead with the messageUID of the requested message as shown below. On success, an updated version of the InboxMessage is returned, otherwise there is an error passed to the callback. Code Block |
---|
[
[Vibes shared] markInboxMessageAsReadWithMessageUID: messageUID: ^ (InboxMessage * _Nullable message, NSError * _Nullable error) {
if (error == nil) {
// error occurred, handle here
} else {
// use the updated message
}
}
] |
Expiring an Inbox MessageAn inbox message can be marked as expired which would automatically make it unavailable for viewing when inbox messages are re-fetched again. This is done by invoking expireInboxMessage with the messageUID of the requested message as shown below. On success, and updated InboxMessage is returned with the expirationDate set, otherwise there is an error message passed to the callback. Code Block |
---|
[
[Vibes shared] expireInboxMessageWithMessageUID: messageUID: ^ (InboxMessage * _Nullable message, NSError * _Nullable error) {
if (error == nil) {
// error occurred, handle here
} else {
// use the updated message
}
}
] |
Push Message Linked to An InboxMessageSince v 4.0.0, it is now possible for a push message to contain a pointer to an inbox message called inboxMessageUid. In such a scenario, one can override the default VibesReceiver, fetch the associated InboxMessage and then open your own custom detail screen when such a message is received. Below is an example. Code Block |
---|
-(void) application: (UIApplication * ) application didReceiveRemoteNotification: (NSDictionary * ) userInfo fetchCompletionHandler: (void( ^ )(UIBackgroundFetchResult)) completionHandler {
NSDictionary * clientAppData = userInfo[@ "client_app_data"];
if (clientAppData != nil) {
NSString * inboxMessageUID = [clientAppData valueForKeyPath: @ "inbox_message_uid"];
if (inboxMessageUID != nil) {
[
[Vibes shared] fetchInboxMessage: ^ (InboxMessage * _Nonnull message, NSError * _Nullable error) {
if (error != nil) {
// handle error
} else {
// open your custom View detail Controller
YourCustomDetailsViewController * yourVc = [YourCustomDetailsViewController loadFromNib];
yourVc.message = message;
UINavigationController * navCont = [
[UINavigationController allo] initWithRootViewController: yourVc
];
[self presentViewController: navCont animated: YES completion: nil];
}
}
]
}
}
} |
|
Localtab |
---|
|
Integrating the iOS Push Notifications SDK — Swift
The following information will show you how to integrate the Vibes Push Notifications SDK (v.3+) into an iOS app. The Swift iOS Example app is also available to show you how to implement the SDK.
Add the following to your application:didFinishLaunchingWithOptions in your AppDelegate.swift file: Code Block |
---|
Vibes.configure(appId: "YOUR_APP_ID") |
The Vibes SDK will notify your app of any failed or successful API calls via a delegate. When configuring the Vibes SDK, assign the delegate to any class implementing the `VibesAPIDelegate` protocol. For example, you could set the delegate to your App Delegate immediately after configuration: Code Block |
---|
...
Vibes.configure(appId: "YOUR_APP_ID")
Vibes.shared.set(delegate: self)
}
func didRegisterPush(error: VibesError?) {
...
} |
If, for any reason, you want to override the default API URL, tracked event type, storage type, advertisingID (if you use AdSupport), or the default logger, pass in an optional configuration: Code Block |
---|
let config = VibesConfiguration(advertisingId: "YOUR_ADVERTISING_ID", //optional
apiUrl: nil, //defaults to US endpoint as defined below
logger: nil, // implement VibesLogger to configure your own logger
storageType: .USERDEFAULTS, // default is .KEYCHAIN
trackedEventTypes: [TrackedEventType.launch, TrackedEventType.clickthru] as NSArray)
Vibes.configure(appId: "YOUR_APP_ID", configuration: configuration) |
You must reset the Vibes default endpoint if you want to use the Vibes Platform Europe instance, as defined in Technical Details. Registering a DeviceAdd the following code wherever it makes the most sense for your application. Code Block |
---|
Vibes.shared.registerDevice() |
Delegate method: Code Block |
---|
func didRegisterDevice(deviceId: String?, error: Error?) {
...
} |
Unregistering a DeviceAdd the following code wherever it makes the most sense for your application. Code Block |
---|
Vibes.shared.unregisterDevice() |
Delegate method: Code Block |
---|
func didUnregisterDevice(error: Error?){
...
} |
Registering for Push- Register for remote notifications by following the OS Local and Remote Notification Programming guide.
Add the following code to your app delegate. Code Block |
---|
func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
...
Vibes.shared.setPushToken(fromData: deviceToken)
Vibes.shared.registerPush()
...
} |
Delegate method: Code Block |
---|
func didRegisterPush(error: Error?) {
...
} |
Unregistering for PushAdd the following code wherever it makes the most sense for your application.
Code Block |
---|
Vibes.shared.set(delegate: self)
Vibes.shared.unregisterPush() |
Delegate method: Code Block |
---|
func didUnregisterPush(error: Error?) {
...
} |
Update the Device LocationAdd the following code wherever it makes the most sense for your application to update the location. It is not required and stores the current location with device. Code Block |
---|
Vibes.shared.updateDevice(lat: 41.8686839, long: -87.8075274) |
Delegate method: Code Block |
---|
func didUpdateDeviceLocation(error: Error?) {
...
} |
Event TrackingLaunch and clickthru events are mostly automatically tracked for you, although to properly track clickthru events, you must add the following to your AppDelegate: Code Block |
---|
# iOS 9
extension AppDelegate {
func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
VibesPush.Vibes.shared.receivedPush(with: userInfo)
}
} |
Code Block |
---|
# iOS 10
extension AppDelegate: UNUserNotificationCenterDelegate {
public func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
VibesPush.Vibes.shared.receivedPush(with: notification.request.content.userInfo)
completionHandler([])
}
} |
Deep LinkDeep linking consists of adding functionality to go to a specific view, a particular section of a page, or a certain tab. If you have deep linking enabled in your push notification setup, you can retrieve its value in the push notification payload. Code Block |
---|
{
"aps": {
"alert": {
"title": "Push Notification!",
"subtitle": "From Vibes",
"body": "You did it! "
}
},
"client_app_data": {
...
"deep_link": "XXXXXXX",
...
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
Sample code for parsing the push notification payload and navigating to the deep link: Code Block |
---|
@available(iOS 10.0, *)
func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
handlePushNotification(userInfo: response.notification.request.content.userInfo)
completionHandler()
}
// For iOS 9
func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
handlePushNotification(userInfo: userInfo)
completionHandler(.newData)
}
fileprivate func handlePushNotification(userInfo: [AnyHashable : Any]) {
// Allow Vibes to track the .launch and .clickthru events from the notification
Vibes.shared.receivedPush(with: userInfo)
// Check for a deep link in the payload
guard let clientData = userInfo["client_app_data"] as? [String: Any],
let deepLink = clientData["deep_link"] as? String
else { return }
// Use deepLink here to navigate to the appropriate view controller
} |
Notification SoundIf your application contains a custom sound for a push notification, you can specify this sound on the Vibes Platform. The push payload received will look like the following: Code Block |
---|
{
"aps": {
"alert": {
"title": "Push Notification!",
"subtitle": "From Vibes",
"body": "You did it! "
},
"sound":"sound.filename",
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
The sound will be played automatically if the sound file exists in your project resources. Custom PropertiesYou can specify up to 10 key-value pairs on the Vibes Platform. The push payload received will look like the following: Code Block |
---|
{
"aps": {
"alert": {
"title": "Push Notification!",
"subtitle": "From Vibes",
"body": "You did it! "
}
},
"client_custom_data":{
"key1":"val1",
"key2":"val2",
....
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
In your application you can retrieve the custom data like this: Code Block |
---|
@available(iOS 10.0, *)
func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
if let customData = response.notification.request.content.userInfo["client_custom_data"] as? [String: Any] {
// Use customData here
}
...
}
// For iOS 9
func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
if let customData = userInfo["client_custom_data"] as? [String: Any] {
// Use customData here
}
...
} |
BadgeOn the Vibes Platform, you can specify your application badge value. The push payload received will look like the following: Code Block |
---|
{
"aps": {
"alert": {
"title": "Push Notification!",
"subtitle": "From Vibes",
"body": "You did it! "
},
"badge":1,
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
CategoryPush notification category is a new feature from iOS 10.+. On the Vibes Platform, you can specify the category of your push notification. The push payload received will look like the following: Code Block |
---|
{
"aps": {
"alert": {
"title": "Push Notification!",
"subtitle": "From Vibes",
"body": "You did it! "
},
"category":"some category"
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
Please check the Apple documentation for how to configure categories and actionable notification. From version iOS 10, you can send rich content embedded (image, video, or audio) in push notifications. Please check the Apple documentation to check how to integrate rich push capability to your application. On the Vibes Platform, you can specify the rich content you want your customers to see. The push payload received will look like the following: Code Block |
---|
{
"aps": {
"alert": {
"title": "Push Notification!",
"subtitle": "From Vibes",
"body": "You did it! "
},
"mutable-content":1
},
"client_app_data":{
"client_message_id":"fgfCHIUHIY8484FYIHWF",
"media_url" : "https://www.publiclyhostedurl.com"
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
Silent PushOn the Vibes Platform, you can specify to send a push notification as a silent or background push. Silent or background push notification can be used to update a badge payload or send custom data to the app. A push notification received will look like the following: Code Block |
---|
{
"aps": {
"content-available": 1
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
|
Localtab |
---|
|
Integrating the iOS Push Notifications SDK — Objective-C
The following information will show you how to integrate the Vibes Push Notifications SDK (v.3+) into an iOS app (Objective-C). The Objective-C iOS Example app is also available to show you how to implement the SDK.
Add the following to your application:didFinishLaunchingWithOptions in your AppDelegate.m file: Code Block |
---|
[Vibes configureWithAppId:@"[YOUR APP ID HERE]"]; |
The Vibes SDK will notify your app of any failed or successful API calls via a delegate. When configuring the Vibes SDK, assign the delegate to any class implementing the `VibesAPIDelegate` protocol. For example, you could set the delegate to your App Delegate immediately after configuration: Code Block |
---|
[Vibes configureWithAppId:@"[YOUR APP ID HERE]"];
[[Vibes shared] setWithDelegate:(id)self];
}
- (void)didRegisterDeviceWithDeviceId:(NSString *)deviceId error:(NSError *)error {
...
} |
If, for any reason, you want to override the default API URL, tracked event type, storage type, advertisingID (if you use AdSupport), or the default logger, pass in an optional configuration: Code Block |
---|
NSArray *trackedEvents = [[NSArray alloc] initWithObjects:[NSNumber numberWithInt:TrackedEventTypeLaunch], [NSNumber numberWithInt:TrackedEventTypeClickthru], nil];
VibesConfiguration *config = [[VibesConfiguration alloc] initWithAdvertisingId:@"[your advertising id]" // if you're using AdSupport
apiUrl:NULL
logger:NULL // implement VibesLogger to configure your own logger
storageType:VibesStorageEnumUSERDEFAULTS // or VibesStorageEnumKEYCHAIN
trackedEventTypes:trackedEvents]; // you can also pass an empty array if you don't want to record any events.
[Vibes configureWithAppId:@"[YOUR APP ID HERE]"
configuration:(id)config]; |
You must reset the Vibes default endpoint if you want to use the Vibes Platform Europe instance, as defined in Technical Details. Registering a DeviceAdd the following code wherever it makes the most sense for your application. Code Block |
---|
[[Vibes shared] registerDevice]; |
Delegate method: Code Block |
---|
- (void)didRegisterDeviceWithDeviceId:(NSString *)deviceId error:(NSError *)error {
...
} |
Unregistering a DeviceAdd the following code wherever it makes the most sense for your application. Code Block |
---|
[[Vibes shared] unregisterDevice]; |
Delegate method: Code Block |
---|
- (void)didUnregisterDeviceWithError:(NSError *)error {
...
} |
Registering for Push- Register for remote notifications by following the OS Local and Remote Notification Programming guide.
Add the following code to your app delegate. Code Block |
---|
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
...
[[Vibes shared] setPushTokenFromData:deviceToken];
[[Vibes shared] registerPush];
...
} |
Delegate method: Code Block |
---|
- (void)didRegisterPushWithError:(NSError *)error {
...
} |
Unregistering for PushAdd the following code wherever it makes the most sense for your application. Code Block |
---|
[[Vibes shared] unregisterPush]; |
Delegate method: Code Block |
---|
- (void)didUnregisterPushWithError:(NSError *)error {
...
} |
Update the Device LocationAdd the following code wherever it makes the most sense for your application to update the location. It is not required and stores the current location with device. Code Block |
---|
[[Vibes shared] updateDeviceWithLat:latitude.doubleValue long:longitude.doubleValue]; |
Delegate method: Code Block |
---|
- (void)didUpdateDeviceLocationWithError:(NSError *)error {
...
} |
Event TrackingLaunch and clickthru events are mostly automatically tracked for you, although to properly track clickthru events, you must add the following to your AppDelegate: Code Block |
---|
# iOS 9
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler {
...
[[Vibes shared] receivedPushWith:userInfo at:[NSDate date]];
completionHandler(UNNotificationPresentationOptionSound | UNNotificationPresentationOptionAlert | UNNotificationPresentationOptionBadge);
} |
Code Block |
---|
# iOS 10
- (void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void (^)(void))completionHandler {
...
[[Vibes shared] receivedPushWith:response.notification.request.content.userInfo at:[NSDate date]];
...
} |
Deep LinkDeep linking consists of adding functionality to go to a specific view, a particular section of a page, or a certain tab. If you have deep linking enabled in your push notification setup, you can retrieve its value in the push notification payload with the following: Code Block |
---|
{
"aps": {
"alert": {
"title": "Push Notification!",
"subtitle": "From Vibes",
"body": "You did it! "
}
},
"client_app_data": {
...
"deep_link": "XXXXXXX",
...
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
Sample code for parsing the push notification payload and navigating to the deep link: Code Block |
---|
- (void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void (^)(void))completionHandler {
[self receivedPushNotifWith:response.notification.request.content.userInfo];
completionHandler();
}
// For iOS 9
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler {
[self receivedPushNotifWith:userInfo];
completionHandler(UNNotificationPresentationOptionSound | UNNotificationPresentationOptionAlert | UNNotificationPresentationOptionBadge);
}
- (void)receivedPushNotifWith:(NSDictionary *)userInfo {
[[Vibes shared] receivedPushWith:userInfo at:[NSDate date]];
if (userInfo[@"client_app_data"][@"deep_link"]) {
// Use the deep_link value here to navigate to the appropriate view controller
}
} |
Notification SoundIf your application contains a custom sound for a push notification, you can specify this sound on the Vibes Platform. The push payload received will look like the following: Code Block |
---|
{
"aps": {
"alert": {
"title": "Push Notification!",
"subtitle": "From Vibes",
"body": "You did it! "
},
"sound":"sound.filename",
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
The sound will be played automatically if the sound file exists in your project resources. Custom Properties You can specify up to 10 key-value pairs on the Vibes Platform. The push payload received will look like the following: Code Block |
---|
{
"aps": {
"alert": {
"title": "Push Notification!",
"subtitle": "From Vibes",
"body": "You did it! "
}
},
"client_custom_data":{
"key1":"val1",
"key2":"val2",
....
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
In your application you can retrieve the custom data like this: Code Block |
---|
- (void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void (^)(void))completionHandler {
if (response.notification.request.content.userInfo[@"client_custom_data"]) {
// Use the client_custom_data value here
}
...
}
// For iOS 9
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler {
if (userInfo[@"client_custom_data"]) {
// Use the client_custom_data value here
}
...
} |
BadgeOn the Vibes Platform, you can specify your application badge value. The push payload received will look like the following: Code Block |
---|
{
"aps": {
"alert": {
"title": "Push Notification!",
"subtitle": "From Vibes",
"body": "You did it! "
},
"badge":1,
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
CategoryPush notification category is a new feature from iOS 10.+. On the Vibes Platform, you can specify the category of your push notification. The push payload received will look like the following: Code Block |
---|
{
"aps": {
"alert": {
"title": "Push Notification!",
"subtitle": "From Vibes",
"body": "You did it! "
},
"category":"some category"
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
Please check the Apple documentation for how to configure categories and actionable notification. From version iOS 10, you can send rich content embedded (image, video, or audio) in push notifications. Please check the Apple documentation to check how to integrate rich push capability to your application. On the Vibes Platform, you can specify the rich content you want your customers to see. The push payload received will look like the following: Code Block |
---|
{
"aps": {
"alert": {
"title": "Push Notification!",
"subtitle": "From Vibes",
"body": "You did it! "
},
"mutable-content":1
},
"client_app_data":{
"client_message_id":"fgfCHIUHIY8484FYIHWF",
"media_url" : "https://www.publiclyhostedurl.com"
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
Silent PushOn the Vibes Platform, you can specify to send a push notification as a silent push. The push payload received will look like the following: Code Block |
---|
{
"aps": {
"content-available": 1
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
In this example, we send a silent push in order to update the badge number appearing on the application icon.
|
Localtab |
---|
|
Integrating the iOS Push Notifications SDK — Swift
The following information will show you how to integrate the Vibes Push Notifications SDK (version 2.1.00) into an iOS app. The iOS Example app is also available to show you how to implement the SDK.
Add the following to your application:didFinishLaunchingWithOptions in your AppDelegate.swift file: Code Block |
---|
Vibes.configure(appId: "YOUR_APP_ID") |
The Vibes SDK will notify your app of any failed or successful API calls via a delegate. When configuring the Vibes SDK, assign the delegate to any class implementing the `VibesAPIDelegate` protocol. For example, you could set the delegate to your App Delegate immediately after configuration: Code Block |
---|
...
Vibes.configure(appId: "YOUR_APP_ID")
Vibes.shared.set(delegate: self)
}
func didRegisterPush(error: VibesError?) {
...
} |
If, for any reason, you want to overwrite tracked event type, storage type, advertisingID (if you use AdSupport), the default logger or the Vibes default endpoint, use this method instead: Code Block |
---|
Vibes.configure(
appId: "YOUR_APP_ID",
trackedEventTypes: [TrackedEventType.launch, TrackedEventType.clickthru] as NSArray,
storageType: .USERDEFAULTS, // default is .KEYCHAIN
advertisingId: "YOUR_ADVERTISING_ID", // optional
logger: nil, // implement VibesLogger to configure your own logger
apiUrl: nil //defaults to US endpoint as defined below
) |
You must reset the Vibes default endpoint if you want to use the Vibes Platform Europe instance, as defined in Technical Details. Registering a DeviceAdd the following code wherever it makes the most sense for your application. Code Block |
---|
Vibes.shared.registerDevice() |
Delegate method: Code Block |
---|
func didRegisterDevice(deviceId: String?, error: Error?) {
...
} |
Unregistering a DeviceAdd the following code wherever it makes the most sense for your application. Code Block |
---|
Vibes.shared.unregisterDevice() |
Delegate method: Code Block |
---|
func didUnregisterDevice(error: Error?){
...
} |
Registering for Push- Register for remote notifications by following the OS Local and Remote Notification Programming guide.
Add the following code to your app delegate. Code Block |
---|
func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
...
Vibes.shared.setPushToken(fromData: deviceToken)
Vibes.shared.registerPush()
...
} |
Delegate method: Code Block |
---|
func didRegisterPush(error: Error?) {
...
} |
Unregistering for PushAdd the following code wherever it makes the most sense for your application.
Code Block |
---|
Vibes.shared.set(delegate: self)
Vibes.shared.unregisterPush() |
Delegate method: Code Block |
---|
func didUnregisterPush(error: Error?) {
...
} |
Update the Device LocationAdd the following code wherever it makes the most sense for your application to update the location. It is not required and stores the current location with device. Code Block |
---|
Vibes.shared.updateDevice(lat: 41.8686839, long: -87.8075274) |
Delegate method: Code Block |
---|
func didUpdateDeviceLocation(error: Error?) {
...
} |
Event TrackingLaunch and clickthru events are mostly automatically tracked for you, although to properly track clickthru events, you must add the following to your AppDelegate: Code Block |
---|
# iOS 9
extension AppDelegate {
func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
VibesPush.Vibes.shared.receivedPush(with: userInfo)
}
} |
Code Block |
---|
# iOS 10
extension AppDelegate: UNUserNotificationCenterDelegate {
public func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
VibesPush.Vibes.shared.receivedPush(with: notification.request.content.userInfo)
completionHandler([])
}
} |
Deep LinkDeep linking consists of adding functionality to go to a specific view, a particular section of a page, or a certain tab. If you have deep linking enabled in your push notification setup, you can retrieve its value in the push notification payload. Code Block |
---|
{
"aps": {
"alert": {
"title": "Push Notification!",
"subtitle": "From Vibes",
"body": "You did it! "
}
},
"client_app_data": {
...
"deep_link": "XXXXXXX",
...
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
Sample code for parsing the push notification payload and navigating to the deep link: Code Block |
---|
@available(iOS 10.0, *)
func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
handlePushNotification(userInfo: response.notification.request.content.userInfo)
completionHandler()
}
// For iOS 9
func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
handlePushNotification(userInfo: userInfo)
completionHandler(.newData)
}
fileprivate func handlePushNotification(userInfo: [AnyHashable : Any]) {
// Allow Vibes to track the .launch and .clickthru events from the notification
Vibes.shared.receivedPush(with: userInfo)
// Check for a deep link in the payload
guard let clientData = userInfo["client_app_data"] as? [String: Any],
let deepLink = clientData["deep_link"] as? String
else { return }
// Use deepLink here to navigate to the appropriate view controller
} |
Notification SoundIf your application contains a custom sound for a push notification, you can specify this sound on the Vibes Platform. The push payload received will look like the following: Code Block |
---|
{
"aps": {
"alert": {
"title": "Push Notification!",
"subtitle": "From Vibes",
"body": "You did it! "
},
"sound":"sound.filename",
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
The sound will be played automatically if the sound file exists in your project resources. Custom PropertiesYou can specify up to 10 key-value pairs on the Vibes Platform. The push payload received will look like the following: Code Block |
---|
{
"aps": {
"alert": {
"title": "Push Notification!",
"subtitle": "From Vibes",
"body": "You did it! "
}
},
"client_custom_data":{
"key1":"val1",
"key2":"val2",
....
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
In your application you can retrieve the custom data like this: Code Block |
---|
@available(iOS 10.0, *)
func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
if let customData = response.notification.request.content.userInfo["client_custom_data"] as? [String: Any] {
// Use customData here
}
...
}
// For iOS 9
func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
if let customData = userInfo["client_custom_data"] as? [String: Any] {
// Use customData here
}
...
} |
BadgeOn the Vibes Platform, you can specify your application badge value. The push payload received will look like the following: Code Block |
---|
{
"aps": {
"alert": {
"title": "Push Notification!",
"subtitle": "From Vibes",
"body": "You did it! "
},
"badge":1,
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
CategoryPush notification category is a new feature from iOS 10.+. On the Vibes Platform, you can specify the category of your push notification. The push payload received will look like the following: Code Block |
---|
{
"aps": {
"alert": {
"title": "Push Notification!",
"subtitle": "From Vibes",
"body": "You did it! "
},
"category":"some category"
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
Please check the Apple documentation for how to configure categories and actionable notification. From version iOS 10, you can send rich content embedded (image, video, or audio) in push notifications. Please check the Apple documentation to check how to integrate rich push capability to your application. On the Vibes Platform, you can specify the rich content you want your customers to see. The push payload received will look like the following: Code Block |
---|
{
"aps": {
"alert": {
"title": "Push Notification!",
"subtitle": "From Vibes",
"body": "You did it! "
},
"mutable-content":1
},
"client_app_data":{
"client_message_id":"fgfCHIUHIY8484FYIHWF",
"media_url" : "https://www.publiclyhostedurl.com"
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
Silent PushOn the Vibes Platform, you can specify to send a push notification as a silent or background push. Silent or background push notification can be used to update a badge payload or send custom data to the app. A push notification received will look like the following: Code Block |
---|
{
"aps": {
"content-available": 1
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
|
Localtab |
---|
|
Integrating the iOS Push Notifications SDK — Objective-C
The following information will show you how to integrate the Vibes Push Notifications SDK (version 2.1.00) into an iOS app (Objective-C). The iOS Example app is also available to show you how to implement the SDK.
Add the following to your application:didFinishLaunchingWithOptions in your AppDelegate.m file: Code Block |
---|
[Vibes configureWithAppId:@"[YOUR APP ID HERE]"]; |
The Vibes SDK will notify your app of any failed or successful API calls via a delegate. When configuring the Vibes SDK, assign the delegate to any class implementing the `VibesAPIDelegate` protocol. For example, you could set the delegate to your App Delegate immediately after configuration: Code Block |
---|
[Vibes configureWithAppId:@"[YOUR APP ID HERE]"];
[[Vibes shared] setWithDelegate:(id)self];
}
- (void)didRegisterDeviceWithDeviceId:(NSString *)deviceId error:(NSError *)error {
...
} |
If, for any reason, you want to overwrite tracked event type, storage type, advertisingID (if you use AdSupport), the default logger or the Vibes default endpoint, use this method instead: Code Block |
---|
NSArray *trackedEvents = [[NSArray alloc] initWithObjects:[NSNumber numberWithInt:TrackedEventTypeLaunch], [NSNumber numberWithInt:TrackedEventTypeClickthru], nil];
[Vibes configureWithAppId:@"[YOUR APP ID HERE]"
trackedEventTypes: trackedEvents // you can also pass an empty array if you don't want to record any events.
storageType: VibesStorageEnumUSERDEFAULTS // or VibesStorageEnumKEYCHAIN
advertisingId: @"[your advertising id]" // if you're using AdSupport
logger: NULL // implement VibesLogger to configure your own logger
apiUrl: NULL]; |
You must reset the Vibes default endpoint if you want to use the Vibes Platform Europe instance, as defined in Technical Details. Registering a DeviceAdd the following code wherever it makes the most sense for your application. Code Block |
---|
[[Vibes shared] registerDevice]; |
Delegate method: Code Block |
---|
- (void)didRegisterDeviceWithDeviceId:(NSString *)deviceId error:(NSError *)error {
...
} |
Unregistering a DeviceAdd the following code wherever it makes the most sense for your application. Code Block |
---|
[[Vibes shared] unregisterDevice]; |
Delegate method: Code Block |
---|
- (void)didUnregisterDeviceWithError:(NSError *)error {
...
} |
Registering for Push- Register for remote notifications by following the OS Local and Remote Notification Programming guide.
Add the following code to your app delegate. Code Block |
---|
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
...
[[Vibes shared] setPushTokenFromData:deviceToken];
[[Vibes shared] registerPush];
...
} |
Delegate method: Code Block |
---|
- (void)didRegisterPushWithError:(NSError *)error {
...
} |
Unregistering for PushAdd the following code wherever it makes the most sense for your application. Code Block |
---|
[[Vibes shared] unregisterPush]; |
Delegate method: Code Block |
---|
- (void)didUnregisterPushWithError:(NSError *)error {
...
} |
Update the Device LocationAdd the following code wherever it makes the most sense for your application to update the location. It is not required and stores the current location with device. Code Block |
---|
[[Vibes shared] updateDeviceWithLat:latitude.doubleValue long:longitude.doubleValue]; |
Delegate method: Code Block |
---|
- (void)didUpdateDeviceLocationWithError:(NSError *)error {
...
} |
Event TrackingLaunch and clickthru events are mostly automatically tracked for you, although to properly track clickthru events, you must add the following to your AppDelegate: Code Block |
---|
# iOS 9
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler {
...
[[Vibes shared] receivedPushWith:userInfo at:[NSDate date]];
completionHandler(UNNotificationPresentationOptionSound | UNNotificationPresentationOptionAlert | UNNotificationPresentationOptionBadge);
} |
Code Block |
---|
# iOS 10
- (void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void (^)(void))completionHandler {
...
[[Vibes shared] receivedPushWith:response.notification.request.content.userInfo at:[NSDate date]];
...
} |
Deep LinkDeep linking consists of adding functionality to go to a specific view, a particular section of a page, or a certain tab. If you have deep linking enabled in your push notification setup, you can retrieve its value in the push notification payload with the following: Code Block |
---|
{
"aps": {
"alert": {
"title": "Push Notification!",
"subtitle": "From Vibes",
"body": "You did it! "
}
},
"client_app_data": {
...
"deep_link": "XXXXXXX",
...
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
Sample code for parsing the push notification payload and navigating to the deep link: Code Block |
---|
- (void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void (^)(void))completionHandler {
[self receivedPushNotifWith:response.notification.request.content.userInfo];
completionHandler();
}
// For iOS 9
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler {
[self receivedPushNotifWith:userInfo];
completionHandler(UNNotificationPresentationOptionSound | UNNotificationPresentationOptionAlert | UNNotificationPresentationOptionBadge);
}
- (void)receivedPushNotifWith:(NSDictionary *)userInfo {
[[Vibes shared] receivedPushWith:userInfo at:[NSDate date]];
if (userInfo[@"client_app_data"][@"deep_link"]) {
// Use the deep_link value here to navigate to the appropriate view controller
}
} |
Notification SoundIf your application contains a custom sound for a push notification, you can specify this sound on the Vibes Platform. The push payload received will look like the following: Code Block |
---|
{
"aps": {
"alert": {
"title": "Push Notification!",
"subtitle": "From Vibes",
"body": "You did it! "
},
"sound":"sound.filename",
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
The sound will be played automatically if the sound file exists in your project resources. Custom Properties You can specify up to 10 key-value pairs on the Vibes Platform. The push payload received will look like the following: Code Block |
---|
{
"aps": {
"alert": {
"title": "Push Notification!",
"subtitle": "From Vibes",
"body": "You did it! "
}
},
"client_custom_data":{
"key1":"val1",
"key2":"val2",
....
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
In your application you can retrieve the custom data like this: Code Block |
---|
- (void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void (^)(void))completionHandler {
if (response.notification.request.content.userInfo[@"client_custom_data"]) {
// Use the client_custom_data value here
}
...
}
// For iOS 9
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler {
if (userInfo[@"client_custom_data"]) {
// Use the client_custom_data value here
}
...
} |
BadgeOn the Vibes Platform, you can specify your application badge value. The push payload received will look like the following: Code Block |
---|
{
"aps": {
"alert": {
"title": "Push Notification!",
"subtitle": "From Vibes",
"body": "You did it! "
},
"badge":1,
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
CategoryPush notification category is a new feature from iOS 10.+. On the Vibes Platform, you can specify the category of your push notification. The push payload received will look like the following: Code Block |
---|
{
"aps": {
"alert": {
"title": "Push Notification!",
"subtitle": "From Vibes",
"body": "You did it! "
},
"category":"some category"
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
Please check the Apple documentation for how to configure categories and actionable notification. From version iOS 10, you can send rich content embedded (image, video, or audio) in push notifications. Please check the Apple documentation to check how to integrate rich push capability to your application. On the Vibes Platform, you can specify the rich content you want your customers to see. The push payload received will look like the following: Code Block |
---|
{
"aps": {
"alert": {
"title": "Push Notification!",
"subtitle": "From Vibes",
"body": "You did it! "
},
"mutable-content":1
},
"client_app_data":{
"client_message_id":"fgfCHIUHIY8484FYIHWF",
"media_url" : "https://www.publiclyhostedurl.com"
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
Silent PushOn the Vibes Platform, you can specify to send a push notification as a silent push. The push payload received will look like the following: Code Block |
---|
{
"aps": {
"content-available": 1
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
} |
In this example, we send a silent push in order to update the badge number appearing on the application icon.
|
Localtab |
---|
|
Integrating the iOS Push Notifications SDK (v.1.0)
The following information will show you how to integrate the Vibes Push Notifications SDK into an iOS app. The iOS Example App is also available to show you how to implement the SDK.
Add the following to your application:didFinishLaunchingWithOptions in your AppDelegate.swift file: Code Block |
---|
Vibes.configure(appid: "MY_APP_ID") |
Registering a DeviceAdd the following lines to application:didFinishLaunchingWithOptions , or wherever it makes the most sense for your application: Code Block |
---|
Vibes.shared.registerDevice { result in
// This callback is optional. If you choose to use it, result will be a
// VibesResult<Credential>.
} |
Unregistering a DeviceUse the following code to unregister a device. You can add the following code wherever it makes the most sense for your application: Code Block |
---|
Vibes.shared.unregisterDevice { result in
// This callback is optional. If you choose to use it, result will be a
// VibesResult<Void>.
} |
Registering for PushRegister for remote notifications by following the iOS Local and Remote Notification Programming guide. Add the following to application:didRegisterForRemoteNotificationsWithDeviceToken in your AppDelegate : Code Block |
---|
```
Vibes.shared.setPushToken(fromData: deviceToken)
``` |
When you would like to register for push, you should call: Code Block |
---|
```
Vibes.shared.registerPush { result in
// This callback is optional. If you choose to use it, result will be a
// VibesResult<Void>.
}
``` |
Unregistering for PushUse the following code to unregister for push. You can add the code wherever it makes the most sense for your application. Code Block |
---|
Vibes.shared.unregisterPush { result in
// This callback is optional. If you choose to use it, result will be a
// VibesResult<Void>.
} |
Updating DeviceUse the following code to update a device. You can add the code wherever it makes the most sense for your application. Code Block |
---|
Vibes.shared.updateDevice { result in
// This callback is optional. If you choose to use it, result will be a
// VibesResult<Credential>.
} |
Event TrackingLaunch and clickthru events are mostly automatically tracked for you, although to properly track clickthru events, you must add the following to your AppDelegate : Code Block |
---|
# iOS 9
extension AppDelegate {
func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
VibesPush.Vibes.shared.receivedPush(with: userInfo)
}
}
# iOS 10
extension AppDelegate: UNUserNotificationCenterDelegate {
public func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
VibesPush.Vibes.shared.receivedPush(with: notification.request.content.userInfo)
completionHandler([])
}
} |
If you would like to change the events that are being tracked, you can modify your Vibes.configure call. Code Block |
---|
Vibes.configure(appid: "TEST_APP_ID", trackedEventTypes: [.launch]) |
Deep LinkingDeep linking consists of adding functionality to go to a specific view, a particular section of a page, or a certain tab. If you have deep linking enabled in your push notification setup, you can retrieve its value in the push notification payload. Code Block |
---|
{
"aps": {
"alert": {
"title": "Push Notification!",
"subtitle": "From Vibes",
"body": "You did it! "
}
},
"client_app_data": {
...
"deep_link": "XXXXXXX",
...
},
"message_uid": "9b8438b7-81cd-4f1f-a50c-4fbc448b0a53"
}
|
One way to handle deep linking in your application is to parse the push notification payload as follows, and push the viewController: Code Block |
---|
fileprivate let kClientDataKey = "client_app_data"
fileprivate let kDeepLinkKey = "deep_link"
fileprivate let kPushDeepLinkView = "XXXXXXX"
...
@available(iOS 10.0, *)
func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
completionHandler()
receivePushNotif(userInfo: response.notification.request.content.userInfo)
}
func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
var configuration = Configuration()
Vibes.configure(appId: configuration.environment.appKey, logger: EventEmitterLogger.shared, apiUrl: configuration.environment.baseURL)
VibesPush.Vibes.shared.receivedPush(with: userInfo)
completionHandler(.newData)
}
/// When the user clicks on a push notif, two events will be sent to Vibes backend: .launch, .clickthru events.
/// If you specify a value for 'deep_link' in client_app_data, you can redirect the user to the viewcontrollers of
/// your choice when he clicks on the push notification. The deep_link format is free
/// (best practice:{nameApp}://{viewcontrollers}{%parameters}
fileprivate func receivePushNotif(userInfo: [AnyHashable : Any]) {
Vibes.configure(appId: kAppKey)
VibesPush.Vibes.shared.receivedPush(with: userInfo)
// Over simplified deep_link mechanism, but you get the idea.
guard let client_data = userInfo[kClientDataKey] as? [String: Any],
let deepLink = client_data[kDeepLinkKey] as? String
else { return }
if (deepLink == kPushDeepLinkView) {
self.navigationController.pushViewController(deepLinkViewController, animated: true)
}
} |
|
|