Azure Notification Hosts - How to set up multiple apps on a single node

I have a situation where I need to use the same notification center for multiple iOS apps. For this tag, all applications should receive this click.

Each iOS app has a different push notification certificate, so only one of the apps actually received the push notification. I don't want to allow multiple hubs to open, because then I need to control which hub each application can belong to - which is very inconvenient.

How can I achieve this?

+3


source to share


1 answer


I'm pretty sure you want to do this for several reasons. iOS push is handled through APNS, which is Apple technology. Apple dictates that each individual application must have its own bundle ID and therefore its own special certificate. Notification Hubs does not support multiple certificates (or multiple app settings for any of the push providers), so there is no way to connect a single hub to multiple apps. You are stuck with creating your own control plane that knows which hub to talk to for which application. Alternatively, you can simply ask all of your hubs to send the same message and use tags for the actual filtering (each hub is prompted to send a message, but only a hub with a device.registered with the correct tag).



+1


source







All Articles