Usage

With the Fyno SDK installed, let’s cover how to initialise it, identify users, register for push notifications, and handle other functionalities.

Initialising the SDK (to be called on app launch)

Distinct ID is an ID that is associated with a specific user and is unique to that user. No two user profiles can have the same Distinct ID.

To initialise the Fyno SDK, you need to provide the following information:

  • Workspace ID: Your unique Fyno workspace ID, available on the Fyno App > Workspace Settings page.
  • Integration ID: The ID of the integration created in Fyno App > Integrations.
  • Distinct ID: A unique identifier for your user. If not provided, a UUID is automatically generated.
  • Version: Indicates the environment in which the user is created. Default is “live”, but you can set it to “test” for testing purposes.

In your main Dart file, import the fyno_flutter package and call FynoFlutter.init() to initialise the SDK:

dart
1import 'package:fyno_flutter/fyno_flutter.dart';
2
3void main() {
4 ...
5 Exception? initException = await FynoFlutter.init(
6 'workspaceId',
7 'integrationId',
8 'distinctId',
9 'version',
10 );
11
12 if (initException != null) {
13 // Handle initialization error
14 print("Initialization error: $initException");
15 } else {
16 // Initialization successful
17 }
18 ...
19}

Identifying the User

To update/set a distinct ID or user name, you can call FynoFlutter.identify().

  • Distinct ID:: The distinct ID you want to identify the user with.
  • User Name: The name you want to assign to the user.
dart
1Exception? identifyException = await FynoFlutter.identify('distinctId', 'userName');
2
3if (identifyException != null) {
4 // Handle identification error
5 print("Identification error: $identifyException");
6} else {
7 // User identification successful
8}

Updating User Profile Mame

To update/set only the name for a user profile, you can call FynoFlutter.updateName()

  • User Name: The name you want to assign to the user.
dart
1Exception? updateUserNameException = await FynoFlutter.updateName('userName');
2
3if (updateUserNameException != null) {
4 // Handle updateUserName error
5 print("User Name Update Exception: $updateUserNameException");
6} else {
7 // User identification successful
8}

Registering for Push Notifications

To register the application for push notifications, call FynoFlutter.registerPush().

APNs or Google FCM

  • To register for push notifications with APNs or Google FCM, you need to specify the provider type.
  • Use apns if APNs is configured or fcm if Google FCM is configured in the integration.
dart
1Exception? pushRegistrationException = await FynoFlutter.registerPush(
2 'provider', // has to be either apns or fcm
3);
4
5if (pushRegistrationException != null) {
6 // Handle push registration error
7 print("Push registration error: $pushRegistrationException");
8} else {
9 // Push registration successful
10}

For Google FCM, ensure you’ve followed the Firebase setup mentioned earlier and have added the google-services.json or GoogleService-Info.plist file to your project root.

Xiaomi Services (Android only)

  • To register for push notifications with Xiaomi, provide the Xiaomi application ID and key, along with the push region.
  • Xiaomi Application Id and Xiaomi Application Key are mandatory fields which can be found under the application registered at Xiaomi Admin.
  • Push Region: Refers to the geographical region where push notifications are delivered.
  • Provider: Use xiaomi.
dart
1Exception? pushRegistrationResult = FynoFlutter.registerPush(
2 'xiaomi',
3 xiaomiApplicationId: 'xiaomiApplicationId',
4 xiaomiApplicationKey: 'xiaomiApplicationKey',
5 pushRegion: 'pushRegion', // one of ‘INDIA’,’EUROPE’,’RUSSIA’,’GLOBAL’,
6);
7
8if (pushRegistrationResult != null) {
9 // Handle push registration error
10 print("Push registration error: $pushRegistrationResult");
11} else {
12 // Push registration successful
13}

Fetch Push Notification Token

If you want to fetch the push notification token for the current device, use FynoFlutter.getNotificationToken()

dart
1String? notificationToken = await FynoFlutter.getNotificationToken();
2
3if(notificationToken != null) {
4 print("Notification token: $notificationToken");
5}

Check if notification received is from Fyno and also handle it

To check if the push notification received is from Fyno, use FynoFlutter.isFynoNotification(messageData) and to handle it, use FynoFlutter.handleFynoNotification()

  • message is an instance of Firebase RemoteMessage
Android only
The following two functions (isFynoNotification and handleFynoNotification) is available only in Android and applicable only if you have notifications getting triggered from multiple sources.
dart
1// to receive and handle notifications when the application is in background or killed state
2FirebaseMessaging.onBackgroundMessage((RemoteMessage message) async {
3 if (await FynoFlutter.isFynoNotification(message.toMap())) {
4 await FynoFlutter.handleFynoNotification(message.toMap());
5 } else {
6 // any other logic to handle the notification
7 }
8});
9
10// to receive and handle notifications when the application is in foreground state
11FirebaseMessaging.onMessage.listen((RemoteMessage message) async {
12 if (await FynoFlutter.isFynoNotification(message.toMap())) {
13 await FynoFlutter.handleFynoNotification(message.toMap());
14 } else {
15 // any other logic to handle the notification
16 }
17});

Merging User Profiles

If you need to merge two user profiles, call FynoFlutter.mergeProfile() with the old and new distinct IDs.

dart
1Exception? mergeException = await FynoFlutter.mergeProfile(
2 'oldDistinctId',
3 'newDistinctId',
4);
5
6if (mergeException != null) {
7 // Handle user profile merge error
8 print("User profile merge error: $mergeException");
9} else {
10 // User profile merge successful
11}

Updating Message Status

You can update the status of a notification (received, clicked or dismissed) using FynoFlutter.updateStatus().

  • Callback URL: You can obtain the Callback URL from the notification additional payload if the notification was triggered from Fyno.
  • Status: The status of the notification (one of RECEIVED, CLICKED or DISMISSED).
dart
1Exception? updateStatusException = await FynoFlutter.updateStatus(
2 'callbackUrl',
3 'status',
4);
5
6if (updateStatusException != null) {
7 // Handle user status update error
8 print("User status update error: $updateStatusException");
9} else {
10 // User status update successful
11}

Resetting User Information

To reset user information, call FynoFlutter.resetUser().

  • You can invoke this function when the user logs out of the application.
  • It handles the deletion of channel data associated with the current user, initiates the creation of a fresh user profile, and transfers this particular channel data (push token) to the newly created profile.
  • This feature proves to be invaluable if you plan to send push notifications to an application even after the user has logged out.
  • It is also recommmended as it ensures that devices where the users have logged out are no longer associated with them.
dart
1Exception? resetUserException = await FynoFlutter.resetUser();
2
3if (resetUserException != null) {
4 // Handle user information reset error
5 print("User information reset error: $resetUserException");
6} else {
7 // User information reset successful
8}

Sample initialisation

dart
1// initialise
2
3Exception? initException = await FynoFlutter.init(
4 'workspaceId',
5 'integrationId',
6 'distinctId',
7 'version',
8);
9
10if (initException != null) {
11 // Handle initialization error
12 print("Initialization error: $initException");
13} else {
14 // Initialization successful
15}
16
17// identify user
18Exception? identifyException = await FynoFlutter.identify('distinctId', 'userName');
19
20if (identifyException != null) {
21 // Handle identification error
22 print("Identification error: $identifyException");
23} else {
24 // User identification successful
25}
26
27// register with APNs
28Exception? pushRegistrationException = await FynoFlutter.registerPush(
29 'apns',
30);
31
32if (pushRegistrationException != null) {
33 // Handle push registration error
34 print("Push registration error: $pushRegistrationException");
35} else {
36 // Push registration successful
37}