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

Deal with duplicate entries in azure notification hub for the same device

I am using windows azure notification hub in my application to provide notifications to the user. Below is the code of the API that registers the devices on notification hub. var platform = registrationCall["platform"].ToString(); var installationId…
Sachin Trivedi
  • 2,033
  • 4
  • 28
  • 57
4
votes
0 answers

How can we integrate external push notifications with .NET Maui for iOS and Android?

I am building a .NET MAUI app with Blazor for iOS initially (and targeting Android soon). I want to enable and integrate external push notifications, that can be sent from our backend, hosted in Microsoft Azure. (I am new to apps & notifications, so…
4
votes
1 answer

Azure Notifications Hub, Direct Send vs Installations

We are implementing a backend service that gets device registration tokens from a backend system. The device registration tokens are obtained by the mobile device from the platform PNS. The tokens are stored with the user profile in the backend, we…
JoostD
  • 734
  • 6
  • 13
4
votes
1 answer

Push Notifications no longer working since iOS 13 for Xamarin app

Since the public release of iOS 13 push notifications appear to no longer work for my Xamarin.Forms iOS project. I currently use Azure Notification Hub to send test notifications and previously, my iPhones would get notifications with no problem.…
MattVon
  • 481
  • 1
  • 8
  • 25
4
votes
2 answers

App crashes hard in UnregisterAllAsync when trying to run in iOS 13 in Xamarin.iOS

Pretty simple code works fine in iOS 12, but when working with the new previews for iOS 13, I get pretty hard crashes SIGSEGV with the following code: Hub.UnregisterAllAsync(deviceToken, (error) => { if (error !=…
jmlumpkin
  • 922
  • 2
  • 14
  • 34
4
votes
1 answer

Can't deploy arm template with NotificationHub + ApnsCredentials

I am using arm template to deploy Azure NotificationHub Here is { "apiVersion": "2017-04-01", "type": "Microsoft.NotificationHubs/namespaces/notificationHubs", "name": "[parameters('notificationHub_name')]", "location":…
wolszakp
  • 1,109
  • 11
  • 25
4
votes
1 answer

the Push Notification System handle for the registration is no longer valid - FCM

I have integrated Firebase Cloud Messaging + Azure Notification Hub into a Xamarin Android application. Registering with Notification Hub is successful and I could able to view the registration id. Below code shows how I register with notification…
4
votes
1 answer

Android not receiving PushNotification when App is "closed"

I'm using GCM Service for push notification, it's working fine when App is open or in backgourd, but when app is closed it's Crashing: Exception: FATAL EXCEPTION: main Process: br.com.siagri.SiagriAutorize, PID: 15786…
4
votes
1 answer

Xamarin.Android push notification is breaking the app when App is Not Running

I am trying to add push notifications to my app by the following https://learn.microsoft.com/en-us/azure/notification-hubs/xamarin-notification-hubs-push-notifications-android-gcm After following this step-by-step tutorial to setup the Push…
Sivamohan Reddy
  • 436
  • 1
  • 8
  • 26
4
votes
3 answers

How to send Push Notifications using Azure Notification Hub or Azure App Service Mobile App?

I am running around to get this push notification functionality working (for 4 days now) in my app by using Azure Notification Hubs or Azure App Service Mobile App. It's been hard to find even a basic sample for sending Push Notifications to my…
Gauzy
  • 711
  • 3
  • 13
  • 26
4
votes
1 answer

How to select templates when using the Microsoft.Azure.NotificationHubs.Installation class?

I'm setting up a Web API project that uses Azure Push Notifications. I'd like to use the new "Installation" model instead of the older "Registration" model. The documentation is a bit limited however. Looking at MSDN,…
Krumelur
  • 32,180
  • 27
  • 124
  • 263
4
votes
1 answer

Notification Hub Caching of Toast Notifications

I have wanted to implement a way of ensuring that user receive notifications, e.g. Azure NotificationHub - Detect failed notifications However this had limited success when there was many subscribes to a tag, and then ended up with a lot server…
JTIM
  • 2,774
  • 1
  • 34
  • 74
4
votes
2 answers

Cannot find the Debug Tab for Azure Notifications Hub (New UI)

I am following this tutorial Getting started with Azure Notifications Hub for Xamarin.Android I have everything setup for my app and now I need to send a test notification to see if my configuration is correct but the Debug tab seems to have gone…
4
votes
1 answer

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

Azure Notification Hubs - Should I save the device token in my server?

I am using Azure Notification Hubs to deliver push notifications to an android/iPhone devices. My general flow is: 1.Every time the user opens the mobile app, a call is made to the PNS (APNS/GCM) and gets an updated device token. 2. The…