禁用FCM Firebase推送通知声音

时间:2020-11-09 20:42:26

标签: node.js flutter google-cloud-functions firebase-cloud-messaging

我正在使用Node.js发送Firebase推送通知(FCM Firebase Cloud Messaging),但是找不到禁用通知声音的方法。

Firebase的官方说明在这个原因上并没有太大帮助(Firebase Notification Sound

我尝试了许多有效载荷组合,例如:

const payload = {
    notification: {
        title: 'title',
        body: 'text',
        sound: 'disable'
    }
}

const payload = {
    notification: {
        title: 'title',
        body: 'text',
        sound: ''
    }
}

但是他们没有一个使我的消息静音。 预先感谢!

1 个答案:

答案 0 :(得分:0)

由于文档建议您可以提供“捆绑在应用程序中的声音资源的文件名”,在我看来,您可以摆脱捆绑在应用程序中实际上是无声的声音资源,并以此为目标API。