richsage / RMSPushNotificationsBundle

NOT MAINTAINED! ⛔️ Push notifications/messages for mobile devices. Supports iOS, Android (C2DM, GCM), Blackberry and Windows Mobile (toast only). A Symfony2 bundle.
MIT License
321 stars 152 forks source link

Apple HTTP/2 APNS -- push notification support #176

Open stanchovy opened 3 years ago

stanchovy commented 3 years ago

Hi all,

Apple earlier this year introduced a new way to do Apple Push Notifications and declared that they would remove support for the older way of doing it by March 31, 2021.

Based on the activity history here it's safe to assume that no one is intending to fix this library to bring it up to compliance, which means it will flat-out not work after the said date (currently it works on the whole).

Does anyone here know of any projects that intend to pick up where this project left off?

Thanks.

davedevelopment commented 3 years ago

We found this library far exceeded our needs, so pulled everything into our own namespace and threw away anything we didn't want. It's not something I can package up easily, but I can tell you it comes out at just 800 lines of code, a good chunk of which is data structure type things. Take a look at your needs and you'll probably see they can be achieved with a handful of classes and a couple of HTTP calls.

richsage commented 3 years ago

I'd love to keep this updated, particularly with the p8 changes and similar, but unfortunately I'm not in the Symfony space any more and as usual spare time is lacking. I did however need to check quickly the other day that a p8 certificate worked and came across https://github.com/edamov/pushok which worked a treat - sure there are others too but this one worked easily for me.

stanchovy commented 3 years ago

Thank you for the responses @davedevelopment and @richsage -- very helpful directions.

And thank you for all your work on this library @richsage -- it has been really useful.