Is there any char limit on mobile app notification for IOS and Android. I am using the AWS SNS as service provider.
Documentation shows that the entire payload limit is 256kb:
What is the maximum payload length of AWS SNS for mobile push notifications?
https://aws.amazon.com/about-aws/whats-new/2013/06/18/amazon-sqs-announces-256KB-large-payloads/
Related
I'm trying to send notification to specific users on my cordova application using cordova-plugin-firebasex which is a fork of cordova-plugin-firebase with fixs and improvement.
I'd like to know what are the differences between FCM Id, FCM Token, and APNS Token, since there is no accurate explication on this.
Also, which one should you use to send push notifications to specifics users, for both Android & iOS.
The notifications are divided in two components:
The device token (APNs) and the Device ID (FCM).
Payload
Within these two components we find various differences:
FCM is sent as JSON payloads and APNS sends either string or dict.
FCM has a payload of 2KB while APNS has a payload of 4KB.
APNS saves 1 notification per App while FCM saves 100 notifications per device.
FCM supports multiple platforms while APNS requires of their proprietary platform.
Acknowledgement can be sent in FCM if using XMPP, but it's not possible on APNS.
I'm confused about the implementation of cloud messaging through FCM. To send an iOS device a remote (push) notification, an iOS device token is needed for APNs. However, a Firebase app doesn't interface with APNs, it interfaces with FCM, which interfaces with APNs. But to send a push notification (or message) to any client through FCM requires an FCM token. Does this mean that the iOS device token is not needed for a Firebase app to send push notifications to iOS devices?
Only an FCM token is required to send a message to a device. There is no Apple-specific data required. Firebase handles the details of each underlying push notification system.
Firebase uses method swizzling to automatically map your FCM token to your APNs token, as explained in the Firebase Docs here (or see images below).
How can I perform a cloud function that is responsible for sending push notifications to mobile devices (Android or ios) previously registered from an app and that previously saved the messaging key on the server? The idea is that when there is modification of a child in the realtime a push notification is sent to the user. Thank you
I want to create my own push notification mechanism for my own iOS applications.
I compared some services like pushy.me or Google Firebase. I think Pushy is the only service that can push notifications independent from Apple APNs, but it uses simple HTTP long-poll requests to receive notifications (in the iOS SDK).
But how does Firebase work? Does it still depend on Apple's APNs? How will it affect my battery life?
Firebase Cloud Messaging (FCM) delivers push notification to iOS devices via Apple's Push Notifications service. Also FCM extends functionality of push notifications.
How FCM extends?
FCM works with iOS and Android. Cool feature if you have the app for both platforms;
Don't need to develop backend for sending notifications, storing pn tokens etc. Just register your app in the Google Developer Console and follow User Guides. For sending a push just execute request to https://fcm.googleapis.com/fcm/send with params;
Broadcast notifications. The app subscribes to a topic and then you can send a notification to all topic subscribers. Very cool;
Upstream messages (send data to the server)
Also Google has others services you can extend FCM with. For example Cloud Functions.
I didn't find that FCM integration take big affect to battery life in my apps.
UPDATE:
FCM framework sends push notification token (and other info) to Google services. Also as I mentioned above you can subscribe app for a specific topic. Than Google knows which device needs to send a push to.
There is a possibility to setup FCM in iOS automatically(with using method swizzling). FCM exchange AppDelegate methods and knows your's device pn token.
Firebase Cloud Messaging (FCM) utilizes APNs (Apple push notifications services) for delivering the messages to iOS devices.
So basically, FCM wraps iOS methods like registerForRemoteNotifications or didReceiveRemoteNotification using method swizzling (BTW, you can disable this if you wish, although I can't see any reason...).
On the technical side - the phone is keeping an open connection with APNs and this tunnel is used for sending the messages themselves.
I'm using Firebase for push notification. Problem is i want to send push notification for some mobile phones but when i'm sending push notification it will send notification to all installed mobile app
You would need to get the mobile token and then store it somewhere on your server.
Then you can send to specific devices using the mobile token.
Just in case, i actually wrote a full guide on how to implement push notifications to your ionic app here