Skip to content

Instantly share code, notes, and snippets.

@hiranya911
Last active March 17, 2019 20:11
Show Gist options
  • Save hiranya911/77fa55044108e389bf0258ec04398922 to your computer and use it in GitHub Desktop.
Save hiranya911/77fa55044108e389bf0258ec04398922 to your computer and use it in GitHub Desktop.
const admin = require('firebase-admin');
(async () => {
admin.initializeApp();
const message = {
data: {
time: '1:15 PM',
symbol: 'GOOG',
value: '1184.46'
},
token: '<device_registration_token>',
};
await admin.messaging().send(message);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment