如何在没有声音或振动的情况下发送 FCM?

时间:2021-05-03 09:36:39

标签: firebase push-notification google-cloud-functions firebase-cloud-messaging apple-push-notifications

我正在向设备发送推送通知。目前它发送振动和声音:

apns: {
    headers: {
        'apns-priority': '10',
    },
    payload: {
        aps: {
            sound: 'default',
        }
    },
},
android: {
    priority: "high",
    notification: {
        sound: 'default',
    }
},

如何在没有声音或振动的情况下发送通知?我只希望在屏幕上显示通知并在锁定时唤醒屏幕。

谢谢!

0 个答案:

没有答案