Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GCM support for ios application when application in background or killed

Hello all i am integrating GCM in iOS application using following link

https://developers.google.com/cloud-messaging/ios/start.

I have also uploaded the certificates when configuring the file on defined steps.

I have also succeeded for getting notification,but the problem is that i am not getting the notification when the application is killed or in background.Is there any implementation for getting notification in background or killed ios application as i have searched a lot for that and nothing found fruitful.

So any help will be appreciated Thanks..

like image 236
jogshardik Avatar asked Jun 17 '15 06:06

jogshardik


1 Answers

I had same problem and I posted detailed question later. Luckily, I figured out the problem and it is working for me now. I was not sending data in proper format that got working after I sent data in proper format. My JSON format looks like this.

{
"notification":{
"badge":"12",
"alert":"default",
"sound":"default",
"title":"default"
},
"content_available":true,
"to":"YOUR_KEY_HERE"
}

Since there isn't details available on your sever implementation. you can refer my question for more information.

GCM push notification to iOS with content_available (not working to invoke from inactive state)

like image 124
chinmay gajjar Avatar answered Sep 29 '22 12:09

chinmay gajjar