FCM Web通知令牌

时间:2020-04-16 04:52:36

标签: node.js angular firebase-cloud-messaging

我正在尝试使用fcm-notification实施FCM Web通知。我对在前端使用Web令牌进行创建感到震惊。我不会在前面创建令牌。我写了NodeJS代码。

代码

var fcm = require('fcm-notification');
var FCM = new fcm('../../web-notification-6dcb6-firebase-adminsdk-j7hx8-c76a6601dd.json');
var token = 'token here';

var message = {
    webpush: {
      notification: {
        title: '$GOOG up 1.43% on the day',
        body: '$GOOG gained 11.80 points to close at 835.67, up 1.43% on the day.',
        icon: 'https://my-server/icon.png'
      }
    },
    topic: 'TopicName'
  };

FCM.send(message, function(err, response) {
    if(err){
        console.log('error found', err);
    }else {
        console.log('response here', response);
    }
})

这里的令牌是什么?如何从我的Angular生成它?还有其他方法吗?

0 个答案:

没有答案