Mobile Application Notification
Go to solution
Solved by Eigenvektor,
Firebase Cloud Messaging (FCM) is a service by Google. Apple Push Notification Service (APNS) is the same thing, by Apple. You can also use FCM to talk to Apple devices (which then talks to APNS under the hood).
When your app is started, it registers itself with either of these services, and receives a unique token. You send that token to your back end, which needs to remember which device has which token.
When you want to send a notification, your back end talks to FCM and/or APNS and sends a push notification for one or more token(s). The service then takes care of sending the notification to the device.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now