Skip to contentSkip to navigationSkip to topbar
On this page

Web Push Quickstart: Firebase and Twilio Notify


With just a few lines of code and a couple of API keys, your application can set up Push Notifications using Twilio Notify, Google Firebase and your choice of web language. We have code for you to stand up a server in C#(link takes you to an external page), Node.js(link takes you to an external page), PHP(link takes you to an external page), Python(link takes you to an external page), Ruby(link takes you to an external page), and Java(link takes you to an external page).

In this Quickstart, you will:

  1. Sign up for Twilio Notify
  2. Create a Google Firebase Project and create credentials
  3. Set up Notify with your credentials
  4. Set up a sample "backend" server
  5. Run a toy "frontend" server
  6. Configure push notifications
  7. Run the app and test push notifications

Sign up for or sign into Twilio

sign-up-for-or-sign-into-twilio page anchor

Before you can send push notifications with Notify and Firebase, you'll need to sign up for a Twilio account(link takes you to an external page) or sign into your existing account(link takes you to an external page).

For now, that's about it - you'll need to set up an account with Firebase and get FCM credentials before you can move forward with the app. Leave the Twilio tab open and move to the next step.


Create a project on Google Firebase

create-a-project-on-google-firebase page anchor

If you haven't yet, sign up for Google's Firebase(link takes you to an external page). We'll be using it as the base for our notification today. To use push notifications for your web apps, create a project on the Firebase Console(link takes you to an external page):

Firebase-project-name-.

Find your Firebase secret key

find-your-firebase-secret-key page anchor

In Firebase, the FCM Secret is called the Server Key and you can find it in your Firebase console under your Project Settings and Cloud Messaging tab.

firebase-cloud-messaging-tab.

Save your Firebase key with Twilio

save-your-firebase-key-with-twilio page anchor

Once you have the secret, you need to create a credential on the Add a Push Credential(link takes you to an external page) page on the Twilio Console using the FCM Secret.

Give it a memorable name and paste the FCM Server Key into the "FCM Push Credentials" text box:

notify-credential-web-push.

In the Notify console, create a new Notify service(link takes you to an external page). Inside the new service in the FCM Credential SID dropdown, select the Credential that you have just created.

Make a note of the Service SID. You will use it later when you start writing code.

notify_service_configuration_webpush.

In order to authenticate your requests to Twilio API, you need to create a API Key(link takes you to an external page). If you have already been using Twilio and have created API Keys, you can skip this step.

In Console, go to https://www.twilio.com/console/runtime/api-keys(link takes you to an external page) and click the Create API Key button to create a new API key. Give your new key a Friendly Name and choose the "Standard" type. Hit the "Create API Key" button to generate the key.

The generated Secret is shown only once, store it in a secure place. You will not be able to see the secret in the Console later. (If you do miss it, you can generate a new service).

twilio_new_api_key.

Gather your Twilio account information

gather-your-twilio-account-information page anchor

Next, we need to grab all the necessary information from our Twilio account. Here's a list of what we'll need to gather:

CONFIG VALUEDESCRIPTION
Notify Service Instance SIDA service instance where all the data for our application is stored and scoped. You can create one in the console(link takes you to an external page).
Account SIDUsed to authenticate REST API requests - find it in the console here(link takes you to an external page).
API KeyUsed to authenticate REST API requests - SID (SKxxx..). It can be found here: https://www.twilio.com/console/runtime/api-keys/(link takes you to an external page)
API SecretUsed to authenticate REST API requests. Hopefully, you stored it, but if not create a new API Key here(link takes you to an external page).

Set up the backend server

set-up-the-backend-server page anchor

When using the Notify service, you need to register devices to receive notifications and then send notifications to those devices. To get you going quickly, we've created backend servers for the following languages:

The sample mobile app is set up to communicate with the server-side app to register a device for notifications.

For this example, we'll use the Node.js server. Feel free to copy our choice or follow along in the language you prefer.

Follow the Node.js installation instructions here(link takes you to an external page) and complete the installation.

Download the Node.js server app and unzip it

download-the-nodejs-server-app-and-unzip-it page anchor

Download the Node.js server app(link takes you to an external page) and unzip it, or get it uncompressed from GitHub(link takes you to an external page)

Configure and run the server app on your machine

configure-and-run-the-server-app-on-your-machine page anchor

Now that you have Node.js installed and the Node.js server downloaded and unpacked, it is time to configure the server with your specific account information.

  1. Copy the .env.example file to .env
  2. Next, edit the .env file to include the four configuration parameters (Account SID, API Key SID, API Key Secret, Notify Service SID) we gathered from above.

Notify Environment Configuration

notify-environment-configuration page anchor

Now we need to install our dependencies.

In a Terminal window, navigate to the folder where you unzipped or downloaded the app and run:

npm install

Once we've done configuring we're ready to start the server - again in your terminal, run:

npm start

To confirm the server is running, visit http://localhost:3000(link takes you to an external page) in your web browser. You should see the home screen, informing you of which Twilio services you've configured.

Twilio SDK Starter Home Screen.

Set up the Twilio Notify sample Web Push Notification app

set-up-the-twilio-notify-sample-web-push-notification-app page anchor

Get the Twilio Notify sample Web Push app

get-the-twilio-notify-sample-web-push-app page anchor

To get you going quickly, we provide a Web Push sample app, available on GitHub(link takes you to an external page).

Configure Web Push Notifications

configure-web-push-notifications page anchor

The following steps will guide you to configure Web Push Notifications for the Twilio Notify sample Web Push app.

You'll need to collect the Firebase Sender ID and Web API Key and configure the demo app for your Firebase project. To obtain these keys, go to the Firebase Console(link takes you to an external page) and open your Project Settings.

  • Navigate to General tab. From here, copy the Web API Key:
Firebase Settings General.
  • Navigate to Cloud Messaging tab and get the Sender ID:
Firebase Settings Cloud Messaging Sender Id.
  • Use the obtained keys to modify 2 files in the project

index.html:

Firebase Push Notifications

firebase-push-notifications page anchor

Use Notify and Firebase to create push notifications

1
<html>
2
<link rel="manifest" href="/manifest.json"/>
3
4
<head>
5
<script src="https://www.gstatic.com/firebasejs/4.8.0/firebase-app.js"></script>
6
<script src="https://www.gstatic.com/firebasejs/4.8.0/firebase-messaging.js"></script>
7
<script src="notify_actions.js"></script>
8
<title>Notify Firebase Cloud Notifications</title>
9
</head>
10
11
<body>
12
<h1>Quick Start Notify</h1>
13
<a href="https://firebase.google.com/docs/cloud-messaging/js/client">More details how to set up Firebase web push</a>
14
15
<h2>Create Binding</h2>
16
17
<form id="binding_form">
18
Identity: <input type="text" name="identity_field"><br>
19
Address: <input type="text" name="address_field" size="200" value="<device token>"> <br>
20
<input type="button" onclick="createBinding()" value="Create Binding">
21
</form>
22
23
<script>
24
// firebase sample code snippets from https://firebase.google.com/docs/cloud-messaging/js/client
25
// Initialize Firebase
26
var config = {
27
apiKey: '<ENTER FIREBASE WEB API KEY HERE>',
28
messagingSenderId: '<ENTER FIREBASE SENDER ID HERE>'
29
};
30
firebase.initializeApp(config);
31
32
// Retrieve Firebase Messaging object.
33
const messaging = firebase.messaging();
34
35
messaging.requestPermission()
36
.then(function() {
37
console.log('Notification permission granted.');
38
})
39
.catch(function(err) {
40
console.log('Unable to get permission to notify.', err);
41
});
42
43
// Get Instance ID token. Initially, this makes a network call, once retrieved
44
// subsequent calls to getToken will return from cache.
45
messaging.getToken()
46
.then(function(currentToken) {
47
if (currentToken) {
48
console.log('Token received: ', currentToken);
49
document.forms["binding_form"]["address_field"].value = currentToken;
50
} else {
51
var errMsg = 'No Instance ID token available. Request permission to generate one.';
52
alert(errMsg);
53
document.forms["binding_form"]["address_field"].value = errMsg;
54
}
55
})
56
.catch(function(err) {
57
console.log('An error occurred while retrieving token. ', err);
58
});
59
60
messaging.onMessage(function(payload) {
61
console.log('Message received. ', payload);
62
alert(payload.data.twi_body);
63
});
64
65
function createBinding(){
66
var identity = document.forms["binding_form"]["identity_field"].value;
67
if (identity == "") {
68
alert('Identity must be specified');
69
return false;
70
}
71
72
var address = document.forms["binding_form"]["address_field"].value;
73
if (address == "") {
74
alert('Address must be specified');
75
return false;
76
}
77
78
register(identity, address);
79
}
80
81
</script>
82
83
</body>
84
85
</html>

firebase-messaging-sw.js:

Firebase Notify Integration

firebase-notify-integration page anchor

Initialize Firebase in JavaScript

1
// firebase sample code snippets from https://firebase.google.com/docs/cloud-messaging/js/client
2
// [START initialize_firebase_in_sw]
3
// Give the service worker access to Firebase Messaging.
4
// Note that you can only use Firebase Messaging here, other Firebase libraries
5
// are not available in the service worker.
6
importScripts('https://www.gstatic.com/firebasejs/4.8.0/firebase-app.js');
7
importScripts('https://www.gstatic.com/firebasejs/4.8.0/firebase-messaging.js');
8
9
// Initialize the Firebase app in the service worker by passing in the
10
// messagingSenderId.
11
firebase.initializeApp({
12
'messagingSenderId': '<ENTER FIREBASE SENDER ID HERE>'
13
});
14
15
// Retrieve an instance of Firebase Messaging so that it can handle background
16
// messages.
17
const messaging = firebase.messaging();
18
// [END initialize_firebase_in_sw]
19
20
messaging.setBackgroundMessageHandler(function(payload) {
21
console.log('[firebase-messaging-sw.js] Received background message ', payload);
22
// Customize notification here
23
const notificationTitle = 'Background Message Title';
24
const notificationOptions = {
25
body: 'Background Message body.'
26
};
27
28
return self.registration.showNotification(notificationTitle,
29
notificationOptions);
30
});
31

Create a Binding for Web Push Notifications (FCM)

create-a-binding-for-web-push-notifications-fcm page anchor

Next, we need to create a binding between an Identity and the browser using the web app. The Identity can be any unique identifier you choose, for example, a GUID(link takes you to an external page). In this quickstart, we take care of that with the web push app. For more about Identity and Bindings visit the Binding resource reference API.

Refresh (or open) the Web Push App at http://localhost:8000/(link takes you to an external page)

Notify Web Push Quickstart App Create Binding.

If you are running the sample app in debugger mode and it wasn't successful, you'll see an error message printed in the console.

(information)

Info

Note: If you do not see a device token in the Address bar the first time you launch the app, reload the page. The demo app code is naive and doesn't handle the race between the App asking for and obtaining a token. Additionally, check the browser console for misconfiguration issues or hints.

(warning)

Do not use Personally Identifiable Information for Identity

Notify uses Identity as the unique identifier of a user. Do not use directly identifying information (personally identifiable information or PII) such as a person's name, home address, email address, phone number, et cetera, as the Identity. The system that will process this attribute assumes it is not directly identifying information.

In the app enter the Identity you chose and click the button "Create Binding".

This action creates a Binding which uniquely identifies a user on a certain device running your application.

In the terminal window running the "backend" (Node.js) server, you should see something like this:

1
BindingInstance {
2
_version:
3
V1 {
4
_domain:
5
Notify {
6
twilio: [Object],
7
baseUrl: 'https://notify.twilio.com',
8
_v1: [Circular] },
9
_version: 'v1',
10
_credentials: undefined,
11
_services:
12
{ [Function: ServiceListInstance]
13
_version: [Circular],
14
_solution: {},
15
_uri: '/Services',
16
create: [Function: create],
17
each: [Function: each],
18
list: [Function: list],
19
page: [Function: page],
20
get: [Function: get] } },
21
sid: 'BSXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
22
accountSid: 'ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,
23
serviceSid: 'ISXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX,
24
dateCreated: 2017-01-17T13:07:39.000Z,
25
dateUpdated: 2017-01-17T13:07:39.000Z,
26
notificationProtocolVersion: '3',
27
endpoint: 'user9999999XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
28
identity: 'Bob Builder',
29
bindingType: 'fcm',
30
address: 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
31
tags: [],
32
url: 'https://notify.twilio.com/v1/Services/ISXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Bindings/BSXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
33
_context: undefined,
34
_solution:
35
{ serviceSid: 'ISXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
36
sid: 'BSXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX' } }
37

Now that we have the Binding, we are ready to send a Push Notification.


Send a Push Notification to your App

send-a-push-notification-to-your-app page anchor

To send a notification, you can use the Notify page on the "backend" service you have running at http://localhost:3000(link takes you to an external page). Go ahead and click the "Notify" button at the bottom of the home page to go to the Notify page.

On this page, send a message to the identity you used in the app. Because you registered a binding with Twilio, the server will send your device the message as a notification.

And that's all there is to it! You've now got a "frontend" and a "backend" app which can send push notifications using Notify and Firebase, and you're ready to go off and build your own application. We can't wait to see what you build - notify us when you've got something.

Need some help?

Terms of service

Copyright © 2024 Twilio Inc.