Questions tagged [azure-notificationhub]

A Microsoft Azure service which enables very-high-scale push notifications to Windows, Windows Phone, iOS, Android, and future platforms, using either native payloads or templates, and tags to target broadcasts widely or narrowly.

According to MSDN: http://msdn.microsoft.com/en-us/library/jj891130.aspx:

Notification Hubs are an Azure service which "enable you to access an easy-to-use, multiplatform, scaled-out push infrastructure, which simplifies the implementation of push notifications for both consumer and enterprise apps on mobile platforms."

Azure Notification Hubs abstracts the complexities of working with Windows Notification Services, Windows Mobile Notification Services, Apple Push Notification Services, and Google Cloud Messaging, so that a single method call can conceivably target any one device, or all of the devices, regardless of the device platform.

Marketing page with feature descriptions: http://azure.microsoft.com/en-us/services/notification-hubs/

832 questions
26
votes
3 answers

How to get Device Id in Xamarin Forms?

How can I get Device Unique Id in Android and iOS using c# in Xamarin Froms? I am using Azure Notification Hub for sending Notification. I am referring this blog. But in Android I am not able to find related "Settings"
25
votes
3 answers

Difference between azure notification hub and azure mobile services

What are the main differences between azure notification hub and mobile services Which is best to use when. Thanks
Rusty
  • 1,303
  • 2
  • 14
  • 28
22
votes
2 answers

Azure Notification Hub no longer accepting GCM API Key

Recently, every time I try to add or modify the GCM API Key in an Azure Notification Hub, I get the following error: SubCode=40000. Failed to validate credentials with GCM. The remote server returned an error: (401) Unauthorized... I have tried…
22
votes
2 answers

Can we register a web application to receive notifications from Azure Notification Hub?

I am trying to create a web application which receives notification from Azure Notification Hub. Everywhere I only see mobile devices registering for notifications sent from back-end. I want this web application to be used in browser and receives…
Rusty
  • 1,303
  • 2
  • 14
  • 28
19
votes
2 answers

Azure Notification Hub unable to upload .p12 for APN

I am not able to upload a .p12 for APN. and this is the error message I received. Any idea what cause this error? SubCode=40000. Failed to validate credentials with APNS. Error is The credentials supplied to the package were not…
user3512319
  • 191
  • 1
  • 4
15
votes
10 answers

Create registration for Azure Notification Hub in Postman

I created a Service Bus / Notification Hub in my Azure Portal. Now I'm trying to use the Azure REST API with Postman based on this doc : https://msdn.microsoft.com/en-us/library/azure/dn223265.aspx Here is the Postman configuration I have : It's a…
Jérôme Oudoul
  • 369
  • 1
  • 5
  • 14
15
votes
5 answers

azure notification hub tag limits

reading the pricing details http://azure.microsoft.com/en-us/pricing/details/notification-hubs/ there seems to be a limit of number of tags used in a push. Broadcast (tag size) Limited to 10K Limited to 10K Unlimited # of tags (broadcast…
lpic
  • 560
  • 1
  • 7
  • 20
15
votes
2 answers

Cost of Azure Notification Hubs vs Amazon SNS

I've been evaluating options for sending mobile push notifications and looked at pricing of Microsoft's vs Amazon's hub offerings. I think I must have miss-calculated since the Microsoft offer is coming out 20 times the cost! Can someone please…
Rob Bowman
  • 7,632
  • 22
  • 93
  • 200
14
votes
1 answer

Registration in Notification Hub with PHP Backend

For user requeriments the backend must be PHP and the app client is in Ionic 2. Based…
CampDev
  • 1,659
  • 3
  • 16
  • 22
14
votes
1 answer

Azure Notifications Hub. what second args of GetRegistrationsByTagAsync(string tag, int top) stands for?

The documentation says about NotificationHubClient.GetRegistrationsByTagAsync(string tag, int top) in Azure Push Notifications as below, top (Int32) : The location where to get the registrations. But I have no idea what top or location stands…
Youngjae
  • 24,352
  • 18
  • 113
  • 198
12
votes
1 answer

What happens when an Azure push notification fails to send?

Is there any documentation on what the NotificationOutcome class state looks like on a failure? NotificationOutcome result = await _hub.SendNotificationAsync(azureNotification, tags); The MSDN documentation is pretty (completely) useless. I'm…
David Hayes
  • 7,402
  • 14
  • 50
  • 62
11
votes
3 answers

Send notifications to individual users using Azure Notification Hub

I am creating a Web API back-end for an app. The app is currently planned only for WP8, but we also plan to roll out versions for other platforms at a later time. We are basing our push notifications on the Azure Notification Hub. The app will not…
Elad Lachmi
  • 10,406
  • 13
  • 71
  • 133
10
votes
2 answers

App Center Push vs Notification Hub

So it seems that in the spirit of having documentation all over the place, docs.microsoft has once again taken the cake. Looking into sending push notifications, I came across these two…
10
votes
0 answers

WNS pushnotification only sending to some tags

Outline I am trying to implement WNS for my app game. I currently send a notification upon creation of a new user with the following function which works: public async void SendNotificationToTag(string tag, string content) { var wnsToast =…
JTIM
  • 2,774
  • 1
  • 34
  • 74
10
votes
3 answers

Azure Notification Hub registrations disappear when sending a notification

Recently our Azure Notification Hub became a very mysterious entity. When Apple devices register we can see them in Service Bus Explorer and as soon as we try sending any notifications (from SBE or Azure Portal) we get a "Notification Successful"…
Wojtek Turowicz
  • 4,086
  • 3
  • 27
  • 38
1
2 3
55 56