APNS, Flutter, and iOS Push Notifications


[51]
Introduction
Push Notifications are ways to inform users for application development to propagate information to iOS devices. Firebase is one of the most common services to deal with push notifications in Flutter.
Apple Push Notification Service (APNS)
APNS is the official Apple service to deliver push notifications for iOS devices when the application is in foreground, background or app killed state. For sending push notifications to iOS users, you can either communicate with APNS using the certificate or using an authentication token signing key. It is always a great idea to create and upload the authentication key for a number of reasons:
You can use the same APNS key for multiple applications.
You can use one signing key to distribute notifications for all of your company’s applications.
The signing key works for both development and production environments.
The signing key doesn’t expire unlike the push certificates which needs to be regenerated every year.
Token-based authentication offers a stateless way to communicate with APNS. Stateless communication is faster than certificate-based communication.
How do push notifications work?
These notifications are either generated by the application locally or remotely from your server. The application generated notifications are often triggered by specific events like time or location.
Subscribe to my newsletter
Read articles from Pranav Bawgikar directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by

Pranav Bawgikar
Pranav Bawgikar
Hiya 👋 I'm Pranav. I'm a recent computer science grad who loves punching keys, napping while coding and lifting weights. This space is a collection of my journey of active learning from blogs, books and papers.