FCM已成功发送消息,但未在客户端收到

时间:2019-02-27 15:55:01

标签: node.js firebase

我有以下有效载荷:

'topic': 'some-topic',
         'webpush': {
           'notification': {
             'title': 'My title',
             'body': 'Description',
             'icon': 'icon.png',
             'click_action': 'google.com',
           },

         }

在将消息发送到主题时

admin.messaging().send(message)
        .then(function(response) {
            // Response is a message ID string.
            console.log('Successfully sent message:', response);
        })

我收到

的成功消息
: projects/my-project/messages/6144324343268760239

我已经订阅了该主题并获得了

failureCount: 0
​​
successCount: 1

我是localhost并使用Firefox,是否可能出现ssl问题?虽然在控制台上看不到任何错误。

花了几个小时,无法正常工作。

0 个答案:

没有答案