Я пытаюсь найти простое клиент-серверное приложение с помощью Firebase Cloud Messaging.
Я использую Nodejs и этот пакет , но я не знаю, как и где я могу найти клиентатокен?
Вот пример кода:
var fcm = require('fcm-notification');
var FCM = new fcm('path/to/privatekey.json');
var token = 'token here';
var message = {
data: { //This is only optional, you can send any data
score: '850',
time: '2:45'
},
notification:{
title : 'Title of notification',
body : 'Body of notification'
},
token : token
};
FCM.send(message, function(err, response) {
if(err){
console.log('error found', err);
}else {
console.log('response here', response);
}
})