我正在向设备发送推送通知。目前它发送振动和声音:
apns: {
headers: {
'apns-priority': '10',
},
payload: {
aps: {
sound: 'default',
}
},
},
android: {
priority: "high",
notification: {
sound: 'default',
}
},
如何在没有声音或振动的情况下发送通知?我只希望在屏幕上显示通知并在锁定时唤醒屏幕。
谢谢!