-1

I need to send push notifications to specific user (Example "Messenger": when I send a message to a client, i will send a notification to alert the user).

I use Azure NotificationHub, and i need send notifications to Android and IOS.

In my research I find nothing concrete to say whether it is possible or not. I find everything with an associated tag, but can I associate a tag with each user so that I can distinguish all or have a maximum limit?

https://learn.microsoft.com/pt-pt/azure/notification-hubs/notification-hubs-aspnet-backend-gcm-android-push-to-user-google-notification

Thanks for the help me.

1 Answers1

1

but can I associate a tag with each user so that I can distinguish all or have a maximum limit?

Of course, you could associate a tag with each user. We could get more information about tags from this document. Registrations can be tagged with a tag that contains a user ID.

enter image description here

The registration also allows multiple tags. We also could use the tag express to handle it.

or have a maximum limit?

According to this link, there are limitation on active devices and Tag quota per installation/registration. No information about the limitation about the registration or tags.

enter image description here

Tom Sun - MSFT
  • 24,161
  • 3
  • 30
  • 47