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
4
votes
1 answer

Registering Two templates with Notification hub and send Notifications

Motive :- I want to send the both Toast and Tile Notification Simultaneously to my Windows Phone 8.1 App. => I am using Templates Feature with Notifications Hub to send the localized notifications. Everything is working fine When I register only…
4
votes
1 answer

Azure Notification Hub quota limits

The notification hub REST API documentation mentions a quota for notification hubs in a given namespace. I couldn't find on the documentation nor the pricing page what are the boundaries for the quota for each plan. Empirically, i now know that on…
Nuno Rosa
  • 177
  • 1
  • 8
4
votes
4 answers

Adding Google GCM Api Key Azure Notification Hub Error

We are trying to add our GCM API key to the azure notification hub and we are receiving the following error: SubCode=40000. Failed to validate credentials with GCM. Error is The remote server returned an error: (401)…
user351711
  • 3,171
  • 5
  • 39
  • 74
4
votes
1 answer

Push Notifications Using Notification Hub and .NET Web API as Backend

I am working on a project where I have implemented web API with asp.net identity to authenticate users. An iPhone app will be accessing this web API in order to perform several tasks like authorization using identity db, subscribe to groups etc. I…
Sachin Trivedi
  • 2,033
  • 4
  • 28
  • 57
4
votes
1 answer

How does Azure Notification Hub handle expired Apple tokens?

Apple Push Notification Service has a so called Feedback service to invalidate expired tokens. Does Azure Notification Hub use it? What happens exactly when APNS returns expired token? The registration expires or no new messages are sent to this…
4
votes
1 answer

Badge management with Azure Notification Hubs

I am investigating migrating from Azure Mobile Services push notifications to Azure Notification Hubs for two primary benefits: 1) pub/sub architecture using tags, and 2) abstracting the device registration. However, I'm struggling to understand…
Kurt
  • 43
  • 7
4
votes
2 answers

How to use push notification template with several custom properties in Azure Notification Hub?

We're following this tutorial: How To: Windows Azure Notification Hubs (Android Apps) for Android. Everything works fine when structuring the notification payload as described in the guide. That is: { "data": { "msg": "$(property1)" …
The Heatherleaf
  • 128
  • 1
  • 2
  • 11
4
votes
2 answers

Where Should NotificationHubClient be instantiated?

I am experimenting with Azure Notification Bus, and my goal is to have a WebApi service sending push notifications upon specific events triggered by controller actions. I was wondering where would be the correct place to instantiate the…
Liel
  • 2,407
  • 4
  • 20
  • 39
4
votes
2 answers

Azure Notification Hub registration from Javascript using REST services fails

I'm trying to get a registration on the Azure Notification Hub working from html/javascript code running in a web view host (Phonegap / Intel XDK). There is no client library available, so I try to use the REST API (documentation: ). I have the…
Serge van den Oever
  • 4,340
  • 8
  • 45
  • 66
3
votes
1 answer

`pushDisallowed` and `Decision: Absolutely Must Not Proceed` on iPhone after some testing/debugging with background pushes

I am creating a Xamarin Forms app which is using background pushes via Azure Notification Hub. The app is targeting Android and iOS and after some initial prototyping and testing everything worked fine on both platforms. For iOS I am sending pushes…
3
votes
1 answer

APNS handle obtained by Expo in React Native is incorrect

EXPO SDK Version: 42.0.01 Developing for: iOS Our goal: successfully send a test notification from Test Send tool in Azure Notification Hub to a registered physical iPhone which is running a local instance of an EXPO app. Progress: we're able to…
3
votes
1 answer

Azure Notification Hubs for Android: How do I handle Data-Messages with a Background-Service?

I'm trying to make an app that is able to handle (data-)messages sent by the Azure Notification Hubs. At the current state it sends a Notification when recieving a payload by Azure. While the app is running in the foreground (or still open in the…
3
votes
1 answer

Xamarin Forms using Azure Hubs. Push notifications not showing on android when app is running/active

I followed the tutorial to add push notifications to a Xamarin Forms app. It works in iOS in all states: app not running or running in the background or active. For android I get the notifications when the app is not running or it's in the…
3
votes
0 answers

How do we register a push notification listener for Azure Notification Hub using React Native?

I have created an instance in Azure Notification Hub and added a server key to the GCM option that I obtained from my Firebase Console. I have a Node.js backend that has REST API endpoints to register installations and send out push notifications to…
3
votes
0 answers

How can I use single Azure notification hub or single p12 file for multiple flutter apps?

I have created an Azure hub for a flutter app and can I link another app with the same Azure notification hub? Or can I use the same p12 file for different apps? I am using the same server logic for both applications.