nor0x
nor0x

Reputation: 1212

Azure Notification Hub view registrations with tags

I am using Azure Notification Hub to send out push notifications to several mobile platforms.

By registering for the Mobile Service I specify several tags for the push notifications of the Notification Hub. My question is how can I view all registrations and all tags that have been registered?

I can't find anything in the management portal or in Visual Studio. Is there a tool that can be used to show all registrations for a Notification Hub?

Upvotes: 4

Views: 4441

Answers (1)

Mimi Xu
Mimi Xu

Reputation: 326

For programmatic access, https://msdn.microsoft.com/en-us/library/azure/dn790624.aspx can be used to export registrations and https://msdn.microsoft.com/en-us/library/azure/dn223270.aspx will allow you to read all registrations in your hub. To see registrations in Visual Studio, follow the "verify registrations" section in https://azure.microsoft.com/en-us/documentation/articles/notification-hubs-diagnosing/. Hope this helps!

Upvotes: 6

Related Questions