Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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 pages:

  1. https://docs.microsoft.com/en-us/appcenter/sdk/push/uwp

  2. https://docs.microsoft.com/en-us/azure/app-service-mobile/app-service-mobile-windows-store-dotnet-get-started-push

Notice how there's no reference from either page to the other.

So I tried searching Google, doing similar searches to the title of this question, only to find little more than the above two pages.

Which brings me here, with the following question: What is the relationship (and/or difference) between App Center Push and Azure Notification Hub?

like image 913
AjLearning Avatar asked May 25 '18 07:05

AjLearning


People also ask

Is Appcenter going away?

App Center Build makes it easy for mobile developers to get started with building their apps – in many cases with just a few clicks. But this focus on simplicity also means that customers who need... App Center Push will retire on February 15th, 2021. Migrate your applications to Azure Notification Hubs.

What is a notification hub?

Azure Notification Hubs is a massively scalable mobile push notification engine for quickly sending millions of notifications to iOS, Android, Windows, or Kindle devices, working with APNs (Apple Push Notification service), GCM (Google Cloud Messaging), WNS (Windows Push Notification Service), and more.

What is azure notification hub used for?

Azure Notification Hubs provides simple means to broadcast push notifications to mobile devices. Platform is based on a prebuilt push notification infrastructure that provides a central interface to provision and manage push notifications.

Are push notifications worth it?

Many users install the app, for example, and do not use it. This is where push notifications take the stage. Push notifications allow you to improve user retention when they realize that there are benefits to reusing your product all the time, with personalized offers, valuable reminders, and breaking news.


2 Answers

I think its important to add the fact that App Center Push, Auth and Data are now being retired, despite Push being a fantastic offering IMO:

https://visualstudiomagazine.com/articles/2020/02/14/app-center-mbaas.aspx

"We are discontinuing efforts in the Auth, Data, and Push services and working to retire these preview services in App Center," said John Wargo, principal program manager for Visual Studio App Center. "With this change, we will focus App Center on delivering a world-class mobile and desktop DevOps experience. We will also work together with Azure teams to help migrate developers to the native Azure services, and ensure that Azure continues to be a great platform for your mobile apps."

There seems to be no full migration path at time of writing, but there is the hint this will be handled mostly for existing users -

https://docs.microsoft.com/en-us/appcenter/migration/push/

We don’t expect customers to manually migrate from App Center Push to Azure Notification Hubs; so before the service shutdown, we’ll provide detailed instructions for how to streamline your app’s migration from App Center Push to Azure Notification Hubs.

like image 116
WickedW Avatar answered Sep 30 '22 17:09

WickedW


They don't have a reference from either to the other because they are two completely unrelated solutions (except for the fact they solve the same problem).

Both allow you to setup a cross-platform push notification infrastructure for your mobile app, but App Center is free, specifically built for iOS, Android and Windows notifications and requires less setup, but gives you a bit less control over how the notifications look. However it makes it easier to segment notifications based on analytics data. Notifications Hub is a Azure service, so you need a Azure subscription and you need to build a backend to make it work. It takes a more work but you have more complete control over the notifications.

The awesome James Montemagno made a nice summary article comparing the two options.

like image 34
Martin Zikmund Avatar answered Sep 30 '22 19:09

Martin Zikmund