Georg Reisinger f853a2bf0f Send Push neu
2019-02-24 05:42:54 +01:00

30 lines
767 B
JavaScript

var admin = require('firebase-admin');
var serviceAccount = require('../login/firebaseAdminKey.json');
var firebaseAdmin = admin.initializeApp({
credential: admin.credential.cert(serviceAccount),
databaseURL: 'https://test-667ca.firebaseio.com'
});
function sendPush(msgtoken, title, text){
var message = {
notification: {
title: title,
body: text
},
token: msgtoken
};
firebaseAdmin.messaging().send(message)
.then(function(response) {
// See the MessagingDevicesResponse reference documentation for
// the contents of response.
console.log('Successfully sent message:', response);
})
.catch(function(error) {
console.log('Error sending message:', error);
});
}
module.exports = {
sendPush
}