Push Notifications
Learn how to send push notifications to users when they are offline.
Push Notifications provide a way to deliver some information to a user while they are not using your app actively. The following use cases can be covered by push notifications:
- Offline messages. Send a chat message when a recipient is offline. In this case, a push notification will be sent automatically if the user is offline.
- Offline calls. Make a video/audio call with offline opponents. In this case, a push notification will be sent manually.
- Requests to contact list. Send requests to add a user to the contact list. In this case, a push notification will be sent manually).
- User tags. Send notifications to specific user groups defined by tags.
Visit our Key Concepts page to get an overall understanding of the most important QuickBlox concepts.
Before you begin
- Register a QuickBlox account. This is a matter of a few minutes and you will be able to use this account to build your apps.
- Configure QuickBlox SDK for your app. Check out our Setup page for more details.
- Create a user session to be able to use QuickBlox functionality. See our Authentication page to learn how to do it.
Configuration
iOS
Step1. Create APNS certificate and upload it to the Dashboard.
Each iOS application that uses Apple Push Notifications must have an APNS certificate. Upload the APNS certificate to QuickBlox Dashboard => Push Notifications => Settings => Apple Push Notification Service (APNS). To learn how to create APNS certificates and upload them to Dashboard, refer to our guide.
Step2. Open your project in Xcode and enable Push Notifications capabilities.
- Open Xcode and choose your project file.
- Choose the Signing & Capabilities tab.
- Add a Push Notifications and Background Modes capabilities. To see these sections, you should be logged in to Xcode with your Apple ID that is enrolled in the Apple developer program.
- Turn on a Push Notifications capability.
- Turn on a Background modes capability. This section requires you to add specific app permissions.
- Select a Remote notifications checkbox if you want to receive push notifications when the app goes to background mode.
- Select a Voice over IP checkbox if you want your app to receive incoming Voice-over-IP (VoIP) push notifications and use them to display the system call interface to the user when the app is in the background mode.
Android
Step 1. Configure Firebase project and get API key and Sender ID.
First, you should create a Firebase account if you haven't it. Then you should configure your Firebase project.
Register a QuickBlox account. This is a matter of a few minutes and you will be able to use this account to build your apps.
Configure QuickBlox SDK for your app. Check out our Setup page for more details.
Create a user session to be able to use QuickBlox functionality. See our Authentication page to learn how to do it.
Step 2. Generate a new service account key
To generate a new service account key, you need to:
- Open the Firebase console and select your project.
- Go to Project settings > Service Accounts.
- Click on Generate new private key and confirm by clicking Generate key.
- Securely store the JSON file containing the private key that will be downloaded
Step 3. Navigate to the push notifications section on QuickBlox dashboard
To navigate to the push notifications section:
- Head over to QuickBlox dashboard, and choose your application.
- Select the push notifications tab and navigate to the settings page.
- Select the Service account key tab
Note: We will remove the Server key tab when it will be discontinued by FCM, you will by default only have the service account key section on the dashboard.
Step 4. Upload the service account key on QuickBlox dashboard
To upload your service account key:
- Choose the environment for your service account key. (Development/Production)
- Click on the Browse button and select the JSON file containing the key that was downloaded in Step 2.
- Hit the Upload button.
Note: When setting up your environment, it’s important to distinguish between development and production modes. If you’ve uploaded a development certificate, it will only function for subscriptions created in the development environment, and likewise for production. This separation ensures seamless testing and deployment of push notifications across different environments.
Step 5. Add Firebase to your Project
- As part of enabling Firebase services in your Android application, you need to add the google-services dependency to your project-level
build.gradle
file.
buildscript {
// ...
dependencies {
// ...
classpath 'com.google.gms:google-services:4.4.2'
}
}
- Add FCM dependency to your app level
build.gradle
file.
implementation(platform("com.google.firebase:firebase-bom:33.4.0"))
- Include a gms plugin to your app level
build.gradle
file.
apply plugin: 'com.google.gms.google-services'
- Download the
google-services.json
file from your Firebase Project dashboard and put it into your app folder in your Android project.
You can also refer to the official Firebase documentation for more detailed guidance:Add a Firebase configuration file.
Subscribe to push notifications
We recommended using the library firebase_messaging (link: https://pub.dev/packages/firebase_messaging) to receive/send the push notifications.
Subscribe for push notifications. Create a push subscription using the code below.
//Push Channels
//QBPushChannelNames.GCM;
//QBPushChannelNames.APNS;
//QBPushChannelNames.APNS_VOIP;
//QBPushChannelNames.EMAIL;
String channelName = "";
String? token = "";
try {
if (Platform.isAndroid) {
token = await FirebaseMessaging.instance.getToken();
channelName = QBPushChannelNames.GCM;
} else if (Platform.isIOS) {
token = await FirebaseMessaging.instance.getAPNSToken();
channelName = QBPushChannelNames.APNS;
}
await QB.subscriptions.create(token!,channelName);
} on PlatformException catch (e) {
// Some error occurred, look at the exception message for more detai
}
A single user can have up to 10 subscriptions on different devices.
The
deviceToken
is a device registration token generated by the APNS or GCM/FCM. The token can be unregistered by the APNS or GCM/FCM anytime. In this case, the device should be registered again and obtain a new token. When a new token is obtained, a new subscription should be created.
Send push notifications
We recommended using the library firebase_messaging (link: https://pub.dev/packages/firebase_messaging) to receive/send the push notifications.
You can manually initiate sending push notifications to user/users on any event in your application. To do so, you need to form push notification parameters (payload) and set the push recipients.
//Event Types
//QBNotificationEventTypes.FIXED_DATE;
//QBNotificationEventTypes.PERIOD_DATE;
//QBNotificationEventTypes.ONE_SHOT;
//Notification Event Types
//QBNotificationTypes.PUSH;
//QBNotificationTypes.EMAIL;
//Notification Push Types
//QBNotificationPushTypes.APNS
//QBNotificationPushTypes.APNS_VOIP
//QBNotificationPushTypes.GCM
//QBNotificationPushTypes.MPNS
String eventType = QBNotificationEventTypes.ONE_SHOT;
String notificationEventType = QBNotificationTypes.PUSH;
int pushType = QBNotificationPushTypes.APNS_VOIP;
int senderId = 329873;
Map<String, Object> payload = new Map();
payload["message"] = "test";
try {
List<QBEvent?> events = await QB.events.create(eventType, notificationEventType, senderId, payload, pushType: pushType);
} on PlatformException catch (e) {
// Some error occurred, look at the exception message for more details
}
Argument | Required | Description |
---|---|---|
eventType | yes | Types of the notification event: - QBNotificationEventTypes.ONE_SHOT - a one-time event (valid only if the date is not specified).- QBNotificationEventTypes.FIXED_DATE - a one-time event that occurs at a specified date (valid only if the date is specified).- QBNotificationEventTypes.PERIOD_DATE - is a reusable event that occurs within a given period from the initial date (valid only if the period is specified). |
notificationEventType | yes | Type of notifications: - QBNotificationTypes.PUSH - send push notification.- QBNotificationTypes.EMAIL - send email. |
senderId | yes | ID of the user who created the event. |
payload | yes | Push notification payload. Can contain a message (string) property and many other key-value pairs (string-string). Refer here for more details. |
pushType | no | Channel for delivering notification. Used only if the notification type is QBNotificationTypes.PUSH , ignored in other cases.If a QBNotificationPushTypes is not present, the notification will be delivered to all possible devices/platforms for specified users. Possible values are:QBNotificationPushTypes.APNS QBNotificationPushTypes.APNS_VOIP QBNotificationPushTypes.GCM QBNotificationPushTypes.MPNS |
You can send only FCM data messages to the Android app. QuickBlox doesn't support FCM notification messages.
To process FCM data messages on your app when the app is in the background, you need to handle them. If not handled, they will not pop on the screen even if the app has received such push notification. See FCM documentation to learn more about data messages.
How to set up the FCM console and plug into QuickBlox dash board please see How to enable Cloud Messaging API (Legacy) or HTTP v1 API
You can send APNS VoIP notifications to the iOS app. However, if the iOS app is not subscribed to APNS VoIP notifications or the APNS VoIP certificate has expired, the regular APNS will be delivered instead of APNS VoIP.
Recieve push notifications
To receive the push notifications, we recommend using this library. To show notifications on the screen, we recommended using this library.
FirebaseMessaging.onMessage.listen((message) {
AndroidNotificationChannel channel = const AndroidNotificationChannel("channel_id", "some_title", "some_description",
importance: Importance.high);
AndroidNotificationDetails details = AndroidNotificationDetails(channel.id, channel.name, channel.description,
icon: "launch_background");
FlutterLocalNotificationsPlugin plugin = FlutterLocalNotificationsPlugin();
int id = message.hashCode;
String title = "some message title";
String body = message.data["message"];
plugin.show(id, title, body, NotificationDetails(android: details));
});
Make sure that the application has a correct icon file for notification.
Unsubscribe from push notifications
To delete a subscription, use the following code snippet.
int id = 929988234923;
try {
await QB.subscriptions.remove(id);
} on PlatformException catch (e) {
// Some error occurred, look at the exception message for more details
}
Troubleshooting
A subscription is removed after a push is sent and the push isn't delivered
Cause: a device registration token is invalid.
The device registration token is represented as
deviceToken
within the system and is set in thesubscription
. See this section to learn how to subscribe a device to push notifications.
Tip: check if the device registration is correct. The device registration token can be invalid due to a number of reasons:
- Some other data is set instead of a correct device registration token. For example, a Firebase project ID, Firebase user token, etc.
- The client app unregistered itself from GCM/FCM. This can happen if the user uninstalls the application or, on iOS, if the APNs Feedback Service reported the APNs token as invalid.
- The registration token expired. For example, Google might decide to refresh registration tokens or the APNs token may have expired for iOS devices.
- The client app was updated, but the new version is not configured to receive messages.
For all these cases, remove the invalid device registration token and stop using it to send messages. Then, obtain a new token and make sure to create a new subscription with a valid token.
Updated 2 months ago