简体   繁体   中英

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..

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)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM