I'm using Node.js to send firebase push notification (FCM Firebase Cloud Messaging) and I cannot find a way to disable notification sound.
Firebase official descriptions doesn't help much in that cause (Firebase Notification Sound)
I have tried many payload combinations such as:
const payload = {
notification: {
title: 'title',
body: 'text',
sound: 'disable'
}
}
And
const payload = {
notification: {
title: 'title',
body: 'text',
sound: ''
}
}
But none of them silent my messaging. Thanks in advance!