I'am trying to send push notification with pubnub from android app to ios app. I'am using folowing json as push notificatio message, it works for android but doesn't work for ios:
{
"pn_gcm": {
"message": "test message",
"message_id": 1464707948327,
"sender_id": "5735b2a2a3c4c3fe01d37600",
"chat_room": "",
"message_type": "text",
"date": 1464707948327,
"file_url": "",
"sender_name": "Sorocean Alexei"
},
"pn_apns": {
"aps": {
"payload": {
"message": "test message",
"message_id": 1464707948327,
"sender_id": "5735b2a2a3c4c3fe01d37600",
"chat_room": "",
"message_type": "text",
"date": 1464707948327,
"file_url": "",
"sender_name": "sender name"
},
"alert": "sender name: test message",
"badge": 1,
"sound": "default"
}
}
}