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
3
votes
0 answers

Azure Notificationhub QuotaExceededException: This operation is not available for your tier

When trying to send an AppleNotification with SendDirectNotificationAsync() with a list of targets, the hubclient responds with the exception thrown: 'Microsoft.Azure.NotificationHubs.Messaging.QuotaExceededException This operation is not available…
3
votes
4 answers

Sending APNS push with Azure and Node.js to iOS not working

I need to send push notifications to iOS devices with Azure. I added the Notification Hub and the p12 certificate to it. This is my node.js code: async function sendPush(token) { var notificationHubService =…
Eddy
  • 3,533
  • 13
  • 59
  • 89
3
votes
1 answer

Unable to register the iOS device token to azure notification hub using ionic 3 FCM token using Java

I am Using FCM with ionic 3 plugin for IOS app, while trying to register device token to Azure notification hub, with the below FCM token generated by , this.fcm.getToken().then(token => { /*saving token…
3
votes
2 answers

Error CS0234: The type or namespace name 'Azure' does not exist in the namespace 'Microsoft' (are you missing an assembly reference?) in TFS build

I have updated our ASP.NET Web API solution to include the Microsoft.Azure.NotificationHubs Nuget package as I want to be able to send push notifications to our mobile clients. I have written a new controller that does this. Everything works…
DomBurf
  • 2,452
  • 5
  • 36
  • 71
3
votes
2 answers

How to use Azure Notification Hubs with Azure Functions v2

I have to register bindings in Functions v2 to use them. This can be done, for example, as adding corresponding NuGet package. Azure's docs says that Notification Hubs bindings are not available for Functions v2. However, I still can add that Nuget…
Ingweland
  • 1,073
  • 1
  • 13
  • 25
3
votes
1 answer

Azure Notification Hubs still reliant on GCM with 6 months to switch-off

Google have deprecated GCM for delivering push notifications to Android apps, in favour of FCM. GCM will be switched off on April 11 2019 (See header here: https://developers.google.com/cloud-messaging/android/android-migrate-fcm) Microsoft have…
3
votes
3 answers

Google Cloud Messaging payload with application data using Azure Notification Hub

I am trying to send notification from my backend application to Android mobile phones. I managed to install devices and remove them. Now I have problems with the message payload. I need sound alert, and I need to send some application data in the…
3
votes
3 answers

Is Microsoft.Azure.NotificationHubs 1.0.9 compatible with .NET Core 2.0?

We are using NotificationHubs version 1.0.9 with .NetCore 2.0 and .Net Framework 4.7. At compile time, we get this warning: "Package Microsoft.Azure.NOtificationHubs 1.0.9 was restored using '.NETFramework, version=4.6.1' instead of the project…
user8290985
  • 249
  • 1
  • 2
  • 6
3
votes
1 answer

How do you send a notification to a specific Notification Hub installation template?

I am registering installations from my .NET backend server code with multiple templates each. For example: var installation = new Installation { InstallationId = id, PushChannel = token, Templates = new Dictionary
kspearrin
  • 10,238
  • 9
  • 53
  • 82
3
votes
1 answer

Do I need to connect Firebase to Azure Notification Hub?

I see that I can either connect directly (through Rest HTTP requests) to Google Firebase API but I can also connect it to Azure Notification Hub. I also understand that Firebase is free while Azure isn't. Can you kindly describe what is the benefit…
3
votes
1 answer

Send notification to android devices within a radius using Azure Notification Hub

I am building a prototyping using Azure Functions and Notification Hub. Within my function I want a select a bunch of devices based on a geo spatial query and send a notification to these resulted devices. I have notifications working with Firebase…
Chirdeep Tomar
  • 4,281
  • 8
  • 37
  • 66
3
votes
0 answers

How to solve AVD Google API "No system Image installed for this target"?

I have developed Xamarin app in VS, and I would like to use azure notification HUb to push notification to the app, based on Get started with Notification Hubs with Xamarin for Android. If we run app in the emulator, we need to make sure that you…
3
votes
1 answer

Is it possible to send push notification to a Chrome Web user using Azure Notification Hub?

I would like to send notifications to the mobile users of my website (especially Android/Chrome users). I see that Azure Notification Hub handle Google (GCM) technology, and i've red this tutorial: Send push notifications to Chrome apps, but can…
3
votes
3 answers

Azure Notification Hub Device Registration Fails if App Service Uses Authentication

I have a working Azure App Service connected to a Notification Hub configured with GCM and APNS. It has been working perfectly for months with on both platforms. I have now turned on authentication in the app service and configured google and…
3
votes
3 answers

Notification Hub Devices disappearing after Push (APNS)

We have an Azure Notification Hub set up, with APNS Configured in Production Mode, using our Production APNS Certificate. We register our test devices (using TestFlight / Production build, and certificate) to APNS, and then to ANH with a tag…