안녕하세요?
priority 를 추가하여 도즈모드에서 깨우려 하는데 카카오 푸시를 통하면 해당 속성이 전달되지 않는 것 같습니다.
저희는 현재 서비스에서 카카오푸시를 사용하고 있으며,
이번에 priority 값만을 추가했습니다.
아래 파라미터를 카카오 https://kapi.kakao.com/{version}/push/send 로 호출해 보았습니다.
이대로는 도즈 모드에서는 수신되지 않고, 단말기를 깨우면 그때서야 수신이 되고 있습니다.
{
"for_apns": {
"sound": "default",
"push_alert": true,
"badge": 1,
"message": "test8",
"custom_field": {
"type": 5,
"eid": 8
}
},
"for_gcm": {
"delay_while_idle": false,
"return_url": "http://xxx.xxxxx.xxx/v3.1/push/callback/fail/android",
"collapse": "event:8",
"priority" : "high",
"custom_field": {
"message": "test8",
"type": 5,
"eid": 8,
"ebanner": "test8",
"etitle": "test8"
}
}
}
대조테스트를 위해 https://gcm-http.googleapis.com/gcm/send 주소로 다음 파라미터를 직접 호출했을 때에는 도즈 모드에서도 수신이 가능했습니다.
{
"to" : "{GCM_TOKEN_VALUE}",
"priority" : "high",
"collapse_key" : "test",
"delay_while_idle" : false,
"return_url" : "http://xxx.xxxx.xxx/v3.1/push/callback/fail/android",
"data" : {
"message" : "test",
"type" : 5,
"eid" : 1,
"ebanner" : "test",
"etitle" : "test"
}
}
혹 문제가 있었다면 수정을 부탁드리겠습니다.
항상 잘 쓰고 있습니다. 감사합니다.