Reputation: 2302
I have an asp.net core api for a delivery tracking system that interacts with xamarin.forms mobile app, I want to send push notification for certain events like order is received or cancelled etc...
I'm new to push notifications, I have tried some examples of sending push notification using FireBase and OneSignal, but could not find any examples for sending these push notification using my asp.net core api.
what are the steps i should follow to make that work ? any link for a working example is all i need.
Upvotes: 1
Views: 1653
Reputation: 3215
One of the easy ways to implement push notification is to use the Appcenter
https://learn.microsoft.com/en-us/appcenter/sdk/push/xamarin-forms
follow this documentation.
Appcenter also has an API to send the notification so you can integrate it inside your app.
https://learn.microsoft.com/en-us/appcenter/push/pushapi
Hope this helps
Upvotes: 3