1
votes

I have configured push notification through azure notification hub and its working for both my android and ios device. The question is Do I need to configure a back end to be able to send notifications or I can keep using the test send under the notification hub to push my notifications, any limitations to using the test send? Is the test send only for testing?

1
You can’t use the test send if you’re wanting automated notifications based on some sort of event. The only way to do that would be to use something like UiPath but that’s just silly. Look at implementing an Azure function to catch your event and send the notification. The SDK for notification hubs is where you need to start. I implemented that same sort of approach around a year ago and it works for me. I hope that helps.Skin

1 Answers

0
votes

Do I need to configure a back end to be able to send notifications

Yes, Push notifications are normally sent in a back-end service like Mobile Apps or ASP.NET using a compatible library. If a library is not available for your back-end you can also use the REST API directly to send notification messages.

For sending cross-platform notifications, you can refer to this article.

Is the test send only for testing?

Yes, the test send in Azure portal is only for testing.