[PAID] Firebase Cloud Messaging

This extension allows you to implement the Firebase messaging service in your apps. FCM helps you to deliver push notifications like onesignal in your apps. Unlike onesignal FCM is fully free for push notifications. You can send notifications to individual person by there FCM token or you can send push notification to a group subscribed by multiple users. You can send notification to any amount of users in FCM.

Released on : 07 Nov 2021

Last Updated on : 04 Dec 2021

Latest Version : 2.0.0

All Blocks
image image image
Documentation
component_event

This event raises when a message is received. No notification will be shown when a message received.

component_event (1)

This event raises when a push notification is received. You can send push notification with API or Send Notification block. Returns the id, title, body and data from the notification. You can use the id to clear the notification with ClearNotification block.

component_event (2)

This event raises when you subscribed a topic. Returns the topic name when subscription is success otherwise Error Occurred event will be triggered.

component_event (3)

This event raises when you unsubscribed a topic. Returns the topic name when unsubscription is success otherwise Error Occurred event will be triggered.

component_event (4)

This event raises when any error is occurred. Returns the error in string.

component_event (5)

This event raises when you used Send Message block and message is sent successfully. Return the response returned by Firebase that contains message id.

component_event (6)

This event raises when you used Send Notification block and notification is sent and shown successfully. Return the response returned by Firebase that contains message id.

component_method

Initializes the Firebase Messaging Component. You must set your API details first before calling it.

component_method (1)

Return true if the Firebase Messaging Component is initialized.

component_method (2)

Get user token which can be used to send notifications to user personally, You will get the token in GotToken event or if failed then Error Occurred will be triggered.

component_method (3)

This block subscribe a topic to receive all notification or messages on that particular topic. Subscribed event will be triggered when it success with topic name.

component_method (4)

Unsubscribe a subscribed topic user would not be able to receive notification of that topic then. Unsubscribed event will be triggered when it success.

component_method (5)

This block stores the screen which will be opened when the notification will be clicked. You can pass the start value too.

component_method (6)

This block clear the notification for given id. You can get the id from Notification Received event.

component_method (10)

This block send the message to given list of user tokens. Push Notification will not be shown. After sent successfully, Message Sent event will be triggered with response. And for other users Message Received event will be triggered.

data :- data parameter accept a dictionary with the data or message that you want to send.

component_method (9)

This block send the message to given topic. Push Notification will not be shown. After sent successfully, Message Sent event will be triggered with response. And for other users Message Received event will be triggered. All users that has subscribed this topic will receive the message.

data :- data parameter accept a dictionary with the data or message that you want to send.

component_method (8)

This block send the Push Notification to given list of user tokens. A Push Notification will be shown to all given users tokens and on clicked the screen will be opened that is given with given start Value. Notification Sent event will be triggered for user that sent the notification and Notification Received event will be triggered if the app is open.

title :- Title of the push notification.
body :- Content text of the push notification.
largeIcon :- A large icon that will be shown right side of the notification. It can be null.
data :- data parameter accept a dictionary with the data or message that you want to send.

component_method (7)

This block send the Push Notification to given topic. A Push Notification will be shown to all users that has subscribed this topic and on clicked the screen will be opened that is given with given start Value. Notification Sent event will be triggered for user that sent the notification and Notification Received event will be triggered if the app is open.

title :- Title of the push notification.
body :- Content text of the push notification.
largeIcon :- A large icon that will be shown right side of the notification. It can be null.
data :- data parameter accept a dictionary with the data or message that you want to send.

image

These property set the API details of the firebase.

component_set_get

Set the priority of the notification.

component_set_get (1)

Enable the sound on notification.

component_set_get (2)

Set the small icon of the notification

How to Use

Before able to receive the notifications from firebase you have to initialize the Firebase Messaging Component with your API details.

Details Required

  • Web API Key :- Web API key of your project located at Project Setting.
  • App ID :- App ID of your app that you have added located at Project Setting.
  • Project ID :- ID of your project located at Project Setting.
  • Sender ID :- Sender ID of your project located at Project Setting → Cloud Messaging
  • Server Key (for sending notifications) :- Server Key located at Project Setting → Cloud Messaging

Initializing the Firebase

After filling all the details just call initialize block to initialize the Firebase.

blocks

Error Occurred will be raised if the initialization failed by any error.

Fetching User Token

image

Subscribing Topics

image

Sending Notification blocks (1)

Notification Click blocks (2)

Screenshots
82ce5128ce10c05cf7882c4862bb104b4292c729 32119364ed50e72edda649e6e1824d81b06b6a40
Downloads

You can download this extension from AI2 Store.