My purpose: One Push Notification to iOS app, badgeNumber on device need to update based on each device's badge increment.
- We knew that we can send only one message (payload) to different tokens
- in iOS, We cannot update badge number even we receive remote notification when App is forced to close from background.
- I want to use above method to send Different Badge Number to each device, since I get badge number for device from my DB Server.
- I used FCM for iOS push notification
- for Server-side, I use PHP
Some discussion(Android GCM - Send different payload to each user in registration_ids array ) said it's not possible, so is there any way or paid service?
Some said we need to send each payload to each device tokens using loop. Example, I have 1000 tokens, will APNS block my future request?
For my app's usage: around 50 push/day
Thank for your contribute.