Awesome
IBM Cloud Mobile Services - Server side Swift SDK for IBM Cloud Push Notifications Service
The IBM Cloud Push Notifications service provides a unified push service to send real-time notifications to mobile and web applications. The Swift server-side SDK for sending push notifications through the IBM Cloud Push Notifications services.
Ensure that you go through IBM Cloud Push Notifications service documentation before you start.
Contents
Installation
Swift Package Manager
import PackageDescription
let package = Package(
dependencies: [
.package(url: "https://github.com/ibm-bluemix-mobile-services/bluemix-pushnotifications-swift-sdk.git", .upToNextMajor(from: "1.6.0"))
]
)
Build on Linux
sudo apt-get update // not required on Mac
swift build -Xcc -fblocks -Xlinker -rpath -Xlinker $(pwd)/.build/debug/
Usage
Simple notification
Complete the following steps:
-
Import the
IBMPushNotifications
framework.import IBMPushNotifications
Note: For Syndicated use the
overrideServerHost
param ofPushNotifications
before initliazong thePushNotifications
. Eg:PushNotifications.overrideServerHost = "https://syndicated.region.net"
- Initialize with details about your IBM Cloud Push Notifications service.
-
Initialize with ApiKey
//Initialize PushNotifications let myPushNotifications = PushNotifications(pushApiKey:"your-push-service-apiKey", pushAppGuid: "your-push-service-app_guid", pushRegion: PushNotifications.Region.US_SOUTH) // GET AUTH TOKEN myPushNotifications?.getAuthToken(completionHandler: { (hasToken, tokenString) in if hasToken! { // Send push notifications } })
-
Initialize with AppSecret
let myPushNotifications = PushNotifications(pushRegion: PushNotifications.Region.US_SOUTH, pushAppGuid: "your-push-service-guid", pushAppSecret: "your-push-service-appSecret")
-
Create a simple push notification that will broadcast to all devices.
let messageExample = Notification.Message(alert: "Testing IBMPushNotifications") let notificationExample = Notification(message: messageExample)
-
Send the Push notification using the method:
myPushNotifications.send(notification: notificationExample) { (data, status, error) in if error != nil { print("Failed to send push notification. Error: \(error!)") } }
Note: If you are using the APIKEY for Initialisation kindly call
getAuthToken()
, before sending any notification. This will add an Authorization header for the request.
To create a more selective push notification with specified settings that is only sent to certain devices either by deviceIds
or userIds
or by device platforms or based on tag-subscriptions, or to set GCM and APNs features - there are optional parameters that you can use in the corresponding initializers.
Send Bulk push notifications
To send the bulk push notifications of the following,
myPushNotifications.sendBulk(notification: [notificationExample,notificationExample1,notificationExample2]) { (data, status, error) in
if error != nil {
print("Failed to send push notification. Error: \(error!)")
}
}
Notification options
Target
In Target
, you pass the following values:
-
deviceIds - Array of device IDs.
-
userIds - Array of user IDs.
-
platforms - Array of platforms.
-
tagNames - Array of tag names.
let targetExample = Notification.Target(deviceIds: ["device1","device2"], userIds: ["userId1", "userId2"], platforms: [TargetPlatform.Apple,TargetPlatform.Google,TargetPlatform.ChromeExtApp, TargetPlatform.WebChrome,TargetPlatform.webFirefox,TargetPlatform.WebSafari], tagNames: ["tag1", "tag2"])
Note: Do not use userIds, tagNames, platforms and deviceIds together.
Settings
Settings can contain any of the following types:
-
APNs
-
GCM
-
FirefoxWeb
-
ChromeWeb
-
SafariWeb
-
ChromeAppExt
let notificationExample = Notification(message: messageExample, apnsSettings: nil, gcmSettings: nil, firefoxWebSettings: nil, chromeWebSettings: nil, safariWebSettings: nil, chromeAppExtSettings: nil)
APNs
APNs settings can have the following parameters:
-
badge - The number to display as the badge of the application icon
-
interactiveCategory - The category identifier to be used for the interactive push notifications
-
iosActionKey - The title for the Action key
-
sound - The name of the sound file in the application bundle. The sound of this file is played as an alert.
-
type - Notification type: DEFAULT, MIXED or SILENT
-
payload - Custom JSON payload that will be sent as part of the notification message
-
titleLocKey - The key to a title string in the
Localizable.strings
file for the current localization. The key string can be formatted with %@ and %n$@ specifiers to take the variables specified in the titleLocArgs array. -
locKey - A key to an alert-message string in a Localizable.strings file for the current localization (which is set by the user’s language preference). The key string can be formatted with %@ and %n$@ specifiers to take the variables specified in the locArgs array
-
launchImage - The filename of an image file in the app bundle, with or without the filename extension. The image is used as the launch image when users tap the action button or move the action slider
-
titleLocArgs - Variable string values to appear in place of the format specifiers in title-loc-key
-
locArgs - Variable string values to appear in place of the format specifiers in locKey.
-
title - The title of Rich Push notifications (Supported only on iOS 10 and above)
-
subtitle - The subtitle of the Rich Notifications. (Supported only on iOS 10 and above)
-
attachmentUrl - The link to the iOS notifications media (video, audio, GIF, images - Supported only on iOS 10 and above) ,
let apnsSetting = Notification.Settings.Apns(badge: 1, interactiveCategory: "Category", iosActionKey: "VIEW", sound: "Newtune.wav", type: ApnsType.DEFAULT, payload: ["key1":"value1"], titleLocKey: "TITLE1", locKey: "LOCKEY1", launchImage: "launchImage1.png", titleLocArgs: ["arg1","arg2"], locArgs: ["arg3","arg4"], title: "welcome to IBM Cloud Push service", subtitle: "Push Notifications", attachmentUrl: "https://IBMCloud.net/image.png")
GCM
GCM settings can have the following parameters:
-
collapseKey - This parameter identifies a group of messages.
-
delayWhileIdle - When this parameter is set to true, it indicates that the message should not be sent until the device becomes active.
-
payload - Custom JSON payload that will be sent as part of the notification message.
-
priority - A string value that indicates the priority of this notification. Allowed values are 'max', 'high', 'default', 'low' and 'min'. High/Max priority notifications along with 'sound' field may be used for Heads up notification in Android 5.0 or higher. sampleval='low'.
-
sound - The sound file (on device) that will be attempted to play when the notification arrives on the device.
-
timeToLive - This parameter specifies duration (in seconds) the message should be kept in GCM storage if the device is offline.
-
interactiveCategory - The category identifier to be used for the interactive push notifications.
-
icon - Specify the name of the icon to be displayed for the notification. Ensure that the icon is already packaged with the client application.
-
sync - Device group messaging makes it possible for every app instance in a group to reflect the latest messaging state.
-
visibility - private/public - Visibility of this notification, which affects how and when the notifications are revealed on a secure locked screen.
-
lights - Allows setting the notification LED color on receiving push notification.
-
style - Options to specify for Android expandable notifications. The types of expandable notifications are
picture_notification
,bigtext_notification
,inbox_notification
. -
type - Notification type: DEFAULT or SILENT
-
androidTitle - The title of Push notifications
let lights = Notification.Settings.GcmLights(ledArgb: GcmLED.Green, ledOnMs: 3, ledOffMs: 3) let style = Notification.Settings.GcmStyle(type: GcmStyleTypes.inbox_notification, title: "inbox notification", url: "https://IBMCloud.net/image.png", text: "some big text", lines: ["line 1","line 2"]) let gcmSettings = Notification.Settings.Gcm(androidTitle:"title", collapseKey: "collapseKey1", delayWhileIdle: false, payload: ["key1":"value1"], priority: GcmPriority.DEFAULT, sound: "sound.wav", timeToLive: 2, interactiveCategory: "category1", icon: "icon.png", sync: false, visibility: GcmVisibility.Public, lights: lights, style: style,type: FCMType.DEFAULT)
FirefoxWeb
FirefoxWeb
settings can have the following parameters:
-
title - Specifies the title to be set for the WebPush notification.
-
iconUrl - The URL of the icon to be set for the WebPush notification.
-
payload - Custom JSON payload that will be sent as part of the notification message.
-
timeToLive - This parameter specifies the duration (in seconds) the message should be kept in GCM storage if the device is offline.
let firefoxSetttings = Notification.Settings.FirefoxWeb(title: "IBM Cloud Push Notifications", iconUrl: "https://IBM Cloud.net/icon.png", payload: ["key1":"value1"], timeToLive: 3)
ChromeWeb
ChromeWeb settings can have the following parameters:
-
title - Specifies the title to be set for the WebPush notification.
-
iconUrl - The URL of the icon to be set for the WebPush notification.
-
payload - Custom JSON payload that will be sent as part of the notification message.
-
timeToLive - This parameter specifies the duration (in seconds) the message should be kept in GCM storage if the device is offline.
let chromeSetttings = Notification.Settings.ChromeWeb(title: "IBM Cloud Push Notifications", iconUrl: "https://IBMCloud.net/icon.png", payload: ["key1":"value1"], timeToLive: 3)
SafariWeb
SafariWeb settings can have the following parameters:
- title - Specifies the title to be set for the Safari Push Notifications.
- urlArgs - The URL arguments that need to be used with this notification. This has to provided in the form of a JSON Array.
- action - The label of the action button.
let safariSettings = Notification.Settings.SafariWeb(title: "IBM Cloud Push Notifications", urlArgs: ["https://IBMCloud.net"], action: "View")
ChromeAppExt
ChromeAppExt settings can have the following parameters:
-
collapseKey - This parameter identifies a group of messages.
-
delayWhileIdle - When this parameter is set to true, it indicates that the message should not be sent until the device becomes active.
-
title - Specifies the title to be set for the WebPush Notification.
-
iconUrl - The URL of the icon to be set for the WebPush Notification.
-
timeToLive - This parameter specifies how long (in seconds) the message should be kept in GCM storage if the device is offline.
-
payload - Custom JSON payload that will be sent as part of the notification message.
let chromeAppExtSettings = Notification.Settings.ChromeAppExt(title: "IBM Cloud Push Notifications", iconUrl: "https://IBMCloud.net/icon.png", collapseKey: "collapseKey1", delayWhileIdle: false, payload: ["key1":"value1"], timeToLive: 4)
API documentation
Find the API documentation here - https://ibm-bluemix-mobile-services.github.io/API-docs/server-SDK/IBMPushNotifications/index.html
Samples and videos
-
For samples, visit - Github Sample
-
For video tutorials visit - IBM Cloud Push Notifications
Learning more
Connect with IBM Cloud
Twitter | YouTube | Blog | Facebook |
======================= Copyright 2020-21 IBM Corp.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.