Sentinel
Sentinel

Reputation: 3697

Send push notifications to multiple apps using Azure App Services and/or Notification Hubs

We have multiple scenarios where from an Azure App Service for Mobile web api we need to deliver push notifications to multiple client apps. One example is the following:

We have an API serving a mobile app for a single institution with its own branding. This app needs to receive push notifications. We now have new clients, other institutions, that insist on having their own branded version of the app, served by the same API.

How, using Azure, can the API deliver notifications on certain events to all apps for each institution? Is there Azure support for this or does there have to a new notification hub for each app?

Upvotes: 1

Views: 801

Answers (1)

Nikita R.
Nikita R.

Reputation: 7493

You can do that by sharing a single hub through all the apps if your architecture allows it. You'd have to manage tags to differentiate between those clients.

Read more about tag management.

Let me know in the comments if you have additional questions and i'll update the answer accordingly.

Upvotes: 0

Related Questions