IOS engine application push notification does not send notifications

I am using the Google Sample project to set up a push notification on my application backend . I believe that I completed the project in a letter, but my notifications are still not delivered in iOS. I track everything in the engine application, and I see that the task queue supposedly sends my notifications. But my iPhone does not get them. Also, I have already verified that I am registering the correct deviceToken on my server. So now I think something about the project itself is wrong. To check that my iPhone is OK, I try to send with Urban Airship and it works. I can not afford the price that the city airship set (for example, $ 200 per month for users 0-10 thousand). So I need to get this library to work.

Does anyone else check if the project from Google really works? And if itโ€™s not (of course, itโ€™s not), how do you fix it to make it work?

+6
source share
2 answers

Since it seems like you're open to alternatives, try Heroku . Their ZeroPush product gives you a significant amount of free push notifications (5000 clicks, 100 devices).

If you want to keep the existing App Engine stack, you can create your Heroku push notification stack (which can be nothing more than a deaf endpoint for ZeroPush sending push notifications) and use it as a remote web service from your App Engine.

+3
source

If you don't stick with java just giva PushSharp try

0
source

Source: https://habr.com/ru/post/977924/


All Articles