当用户设备处于静音模式时,是否可以在推送通知中的Ionic上播放声音?我正在使用离子v.2.2.3,“ phonegap-plugin-push”,用于iOS的APNS和用于Android的GCM。
答案 0 :(得分:0)
根据有效负载文档https://github.com/phonegap/phonegap-plugin-push/blob/master/docs/PAYLOAD.md#sound ,您就可以发送有效负载/通知,例如:
Android
{
"registration_ids": ["my device id"],
"data": {
"title": "Default",
"message": "Plays default notification sound",
"soundname": "default"
}
}
iOS
{
"aps": {
"alert": "Test sound",
"sound": "default"
}
}
将播放电话的默认通知声音。