ETC
FCM API Remote Notification Sound
NicSub
2021. 6. 30. 11:51
728x90
반응형
FCM API Remote Notification Sound not Working
Google Firebase Cloud Message notification Api Body.
Api Body notification 에 sound 추가해 줘야함.
sound 삭제하면 무음으로 알림.
{
"to" : "전송 대상 토큰",
"collapse_key" : "type_a",
"notification" :
{
"body" : "Body : Notification",
"title" : "Title : NOtification",
"badge" : 1,
"sound" : "default"
},
"data" :
{
"key1" : "Key : Data",
"key2" : "Title : Data",
"key3" : "",
"key4" : "1"
}
}
반응형