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
2 answers

what latency can i expect with azure notification hubs?

I'm wondering what sort of latency can be expected with azure notification hubs? the azure site just mentions 'low latency'. are we talking minutes? seconds? milli-seconds?
yamspog
  • 18,173
  • 17
  • 63
  • 95
3
votes
1 answer

Notification Message is not received to Android device from Azure Notification Hub

I am using Microsoft azure notification hub for push notification in android. I am able to send notification through nodejs server code. Device get notification from nodejs server. Problem :- but when i use notification hub it the notification…
3
votes
2 answers

Sending tags containing special characters to Azure Notification Hub

We want to use Azure Notification Hubs in our iPad app but we have run into a problem. The tags that determine who gets the push message is an email address and it works fine if it only contains normal characters. But it does not work when we try to…
blackpool
  • 485
  • 2
  • 8
  • 16
3
votes
1 answer

How to use REST API for sending messages to Azure Notification Hub from Java/GAE

I have successfully implemented calling GAE -> Azure Mobile Services -> Azure Notification HUB. But I want to skip the Mobile Services step and call the notification HUB directly and I can't figure out how to send the authorization token. The…
Christer Nordvik
  • 2,518
  • 3
  • 35
  • 52
3
votes
3 answers

NotificationHubUnauthorizedException: Unauthorized on Azure Notification Hub registration

So I'm trying the Notification Hubs on Azure. I have set things up according to this blog post. I have done the GCM setup in my Android code so I have a valid regId: String connectionString =…
Magnus Johansson
  • 28,010
  • 19
  • 106
  • 164
3
votes
3 answers

Not receiving push notification on iOS with Azure Notification Hub- didReceiveRemoteNotification is not called

I've followed these Notification Hub resources and have not been successful in receiving push notifications on my iOS…
2
votes
2 answers

Is there any way in which we can identify which users are registered with which device in azure notification hub for sending notification?

How to find out which device is registered for which user for sending apple native notification? I am getting all the devices registered in my notification hub with: var allRegistrations = await _hubClient.GetAllRegistrationsAsync(0); but this has…
ru_2112
  • 21
  • 2
2
votes
0 answers

Notifications for inactive users

I’m implementing a solution that will notify users in a scenario very similar to a chat. I’ll be using SignalR and Azure Notifications Hub for the job. There are two scenarios that I need to address: Notifying users that are currently connected and…
Sam
  • 26,817
  • 58
  • 206
  • 383
2
votes
0 answers

Trigger Flutter code execution using APNS background silent notification in Swift

I'm using APNS via Azure Notification Hub to send notifications to iOS devices, so I can't use FCM for background processing in Flutter, but I am trying to replicate something similar to FCM's FirebaseMessaging.onBackgroundMessage(myMessageHandler)…
2
votes
1 answer

Is there a way to customize remote push notifications in react native before they are showing up on frontend?

I am new to React Native and I have a task to implement push notifications in react native. I am using MS Azure Notification Hub for serving push notifications for my react native app. Both the local and remote notifications are working fine on my…
2
votes
1 answer

React Native Android azure build failing randomly

Azure pipeline is trying to download a resource from 'https://dl.bintray.com/microsoftazuremobile/SDK/'. The same thing had been working for a year so Gradle config doesn't seem an issue but for a week now it is failing randomly. Actual error : >…
Amit
  • 2,389
  • 22
  • 29
2
votes
0 answers

Pass Toast Notification Tag/Primary Key with Azure Notification Hub

I am using the azure notification hub in asp.net core to send toast notifications to an UWP app. Where can I set the toast notification tag (not the registration tag) in order to update later the notification? Send the notification: var payload =…
Luca Ziegler
  • 3,236
  • 1
  • 22
  • 39
2
votes
1 answer

How to use azure notification hub tags for push messages in UWP apps

I want to send push messages to apps in specific channels, like "en-us" and "fr-fr" to localize the push notifications. First i followed this tutorial, and it all…
Jens Caasen
  • 597
  • 1
  • 6
  • 19
2
votes
1 answer

Sending push notifications to Notification Hub via Node.js used new sdk

I've found this how-to guide on sending push notifications with in a Node.js application, however, it seems to be using the now unsupported azure-sdk-for-node sdk. The new recommended javascript (azure-sdk-for-js) sdk is found here, however, I'm…
cgat
  • 3,689
  • 4
  • 24
  • 38
2
votes
3 answers

Cannot register device in Azure NotificationHub on iOS, no callbacks

I'm trying to set up push notifications via Azure NotificationHub (using these guides). Android went fine, but iOS... No matter what I do, I do not receive any callbacks from RegisterNative / RegisterTemplate methods of SBNotificationHub, and no…